~mfisch/brasero/update-to-3.8.0

« back to all changes in this revision

Viewing changes to plugins/local-track/burn-local-image.c

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2009-09-08 09:33:41 UTC
  • mfrom: (1.1.29 upstream)
  • Revision ID: james.westby@ubuntu.com-20090908093341-jh02q5ba0q8jyu9l
Tags: 2.27.92-0ubuntu1
* New upstream release (LP: #425998)
  - Some improvements when handling DVD-RW sequential
  - #593829 - Brasero gets stuck in a loop at "Getting size" while burning another session on a multi-session disk
  - #578466 - Unable to overburn
  - #593314 - Brasero is failing to burn from sftp
  - #593492 - Compilation must be ordered by file name
  - #587122 - Copying DVD - "Error while reading video DVD (no error)"
  - #592026 - brasero crashes when eject a medium
  - #592025 - brasero crashes on detecting src images on a NFS path when preparing burning an image
  - #591880 - Image checksumming causes internal error (LP: #354995)
  - #591397 - Brasero Main window pops up after exiting from Image Burning window.
  - Translation updates
  - lots of small fixes and improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
357
357
static BraseroBurnResult
358
358
brasero_local_track_update_track (BraseroLocalTrack *self)
359
359
{
360
 
        BraseroTrack *track;
 
360
        BraseroTrack *track = NULL;
361
361
        BraseroTrack *current = NULL;
362
362
        BraseroLocalTrackPrivate *priv;
363
363
 
413
413
                                unreadable = g_slist_remove (unreadable, unreadable->data);
414
414
                }
415
415
        }
416
 
        else if (BRASERO_IS_TRACK_STREAM (track)) {
 
416
        else if (BRASERO_IS_TRACK_STREAM (current)) {
417
417
                gchar *uri;
418
418
                gchar *newuri;
419
419
 
430
430
                                                     brasero_track_stream_get_gap (BRASERO_TRACK_STREAM (current)));
431
431
                g_free (uri);
432
432
        }
433
 
        else if (BRASERO_IS_TRACK_IMAGE (track)) {
 
433
        else if (BRASERO_IS_TRACK_IMAGE (current)) {
434
434
                gchar *uri;
435
435
                gchar *newtoc;
436
436
                gchar *newimage;