← Back to team overview

desktop-packages team mailing list archive

[Bug 658004] Re: brasero claims dvd image is too large for disc

 

The error seems to be in the file libbrasero-burn/brasero-session-cfg.c
function brasero_session_cfg_check_size() line 873:


	BRASERO_BURN_LOG ("Session size %lli/Disc size %lli",
			  priv->session_blocks,
			  priv->disc_size);

	if (priv->session_blocks < priv->disc_size) {  // line 873
		priv->is_valid = BRASERO_SESSION_VALID;
		return BRASERO_SESSION_VALID;
	}

The log output says:
BraseroBurn: (at brasero-session-cfg.c :871) Session size 2295104/Disc size 2295104


So there is enough space, but the code expects _more_ than enough space.  The correct check would be:


	if (priv->session_blocks <= priv->disc_size) {  // fixed line 873

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/658004

Title:
  brasero claims dvd image is too large for disc

Status in “brasero” package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: brasero

  ubuntu-10.10-desktop-i386.iso live env.
  GNOME 2.32
  brasero 2.32.0-0ubuntu2
  nautilus 1:2.32.0-0ubuntu1

  Brasero claims an iso file is too large for the disc.
  The inserted disc is a blanked DVD+RW.
  The file is 4,700,372,992 bytes big, which is the official capacity of DVD+RW discs (as per wikipedia and other sources).

  What I did:
   - insert a DVD+RW with content
   - cp /dev/sr0 dvd.iso
   - check dvd.iso size to be 4,700,372,992 bytes
   - right click dvd.iso and select Write to Disc...

  Result:
  The brasero/nautilus dialog claims: The data size is too large for the disc even with the overburn option.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/658004/+subscriptions