~mfisch/brasero/update-to-3.8.0

« back to all changes in this revision

Viewing changes to libbrasero-burn/burn-process.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:
256
256
        if (brasero_track_type_get_has_image (type)) {
257
257
                gchar *toc = NULL;
258
258
                gchar *image = NULL;
 
259
                goffset blocks = 0;
259
260
 
260
261
                track = BRASERO_TRACK (brasero_track_image_new ());
261
262
                brasero_job_get_image_output (BRASERO_JOB (self),
269
270
 
270
271
                g_free (image);
271
272
                g_free (toc);
 
273
 
 
274
                brasero_job_get_session_output_size (BRASERO_JOB (self), &blocks, NULL);
 
275
                brasero_track_image_set_block_num (BRASERO_TRACK_IMAGE (track), blocks);
272
276
        }
273
277
        else if (brasero_track_type_get_has_stream (type)) {
274
278
                gchar *uri = NULL;
597
601
        gboolean read_stdout;
598
602
        /* that's to make sure programs are not translated */
599
603
        gchar *envp [] = {      "LANG=C",
600
 
                                "LANGUAGE=C"
 
604
                                "LANGUAGE=C",
601
605
                                "LC_ALL=C",
602
606
                                NULL};
603
607