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

David Balažic 658004 at bugs.launchpad.net
Wed Nov 2 21:04:38 UTC 2011


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 Ubuntu
Burning Team, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/658004

Title:
  brasero claims dvd image is too large for disc

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



More information about the Ubuntu-burning mailing list