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
Bugs, which is subscribed to 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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to