~ubuntu-branches/ubuntu/wily/brasero/wily

« back to all changes in this revision

Viewing changes to src/scsi-mode-sense.c

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-11-18 11:30:50 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20081118113050-hoy0pi04uv7ww9d8
Tags: 0.8.3-0ubuntu1
* New upstream release (LP: #299411)
  - allow use of remote files
  - drives are now probed asynchronously and may not popup immediatly
    but brasero starts faster
  - some parts of GUI were revisited (in particular the burn
    option dialogs)
  - command line option for video projects (LP: #273140)
  - brasero crashed with SIGSEGV in g_main_context_dispatch()
    (LP: #281599)
  - Brasero main GUI appears after closing the dialog
    when opening an ISO file using Nautilus (LP: #242022)
  - brasero delete original files in VIDEO_TS folder (LP: #280835)
  - brasero crashed with SIGSEGV in 
    brasero_mkisofs_base_write_to_files() (LP: #275312)
  - brasero crashed with SIGSEGV in 
    brasero_project_save_project_as() (LP: #275086)
  - brasero crashed with SIGSEGV in 
    IA__g_sequence_iter_get_sequence() (LP: #282622)
  - brasero crashed with SIGSEGV in brasero_medium_get_drive()
    (LP: #283197)
  - Dialog contains a lot of empty space (LP: #190192)
 * debian/patches/008-add-gettext-domain-to-desktop-file.patch:
   - Dropped, we don't need this anymore
 * debian/control:
  - Add Build-deps on libeel2-dev and libnautilus-extension-dev
 * debian/brasero.install:
  - Install nautilus extension

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
        BRASERO_SET_16 (cdb->alloc_len, sizeof (header));
115
115
        bzero (&header, sizeof (header));
116
116
 
 
117
        BRASERO_BURN_LOG ("Getting page size");
117
118
        res = brasero_scsi_command_issue_sync (cdb, &header, sizeof (header), error);
118
119
        if (res)
119
120
                goto end;
147
148
        buffer = (BraseroScsiModeData *) g_new0 (uchar, request_size);
148
149
 
149
150
        /* ... re-issue the command */
 
151
        BRASERO_BURN_LOG ("Getting page (size = %i)", request_size);
 
152
 
150
153
        BRASERO_SET_16 (cdb->alloc_len, request_size);
151
154
        res = brasero_scsi_command_issue_sync (cdb, buffer, request_size, error);
152
155
        if (res) {