After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 673671 - growisofs plugin does not parse growisofs output correctly with large ISOs
growisofs plugin does not parse growisofs output correctly with large ISOs
Status: RESOLVED OBSOLETE
Product: brasero
Classification: Applications
Component: general
3.4.x
Other Linux
: Normal minor
: ---
Assigned To: Brasero maintainer(s)
Brasero maintainer(s)
Depends on:
Blocks:
 
 
Reported: 2012-04-06 21:47 UTC by Alistair Buxton
Modified: 2018-09-21 17:37 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Alistair Buxton 2012-04-06 21:47:04 UTC
growisofs outputs status lines like this:

 4187815936/14231076864 (29.4%) @1.5x, remaining 25:08 RBU 100.0% UBU  21.2%
10882842624/14231076864 (76.5%) @1.3x, remaining 8:28 RBU 100.0% UBU 100.0%

The plugin parses them with this line of code:

        if (sscanf (line, "%10lld/%lld (%4d.%1d%%) @%2d.%1dx, remaining %*d:%*d",
                    &b_written, &b_total, &perc_1, &perc_2, &speed_1, &speed_2) == 6) {

In the format specifier we have "%10lld". When burning an ISO larger than ~9GB, the number of bytes reaches 11 digits (see second example line above), and so those lines are not scanned. This causes the ISO burning dialogue to stop updating until the burn completes.
Comment 1 GNOME Infrastructure Team 2018-09-21 17:37:40 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to GNOME's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/brasero/issues/225.