brasero r1161 - in trunk: . src
- From: philippr svn gnome org
- To: svn-commits-list gnome org
- Subject: brasero r1161 - in trunk: . src
- Date: Sun, 24 Aug 2008 16:43:28 +0000 (UTC)
Author: philippr
Date: Sun Aug 24 16:43:28 2008
New Revision: 1161
URL: http://svn.gnome.org/viewvc/brasero?rev=1161&view=rev
Log:
Fix bug in medium reading
* src/burn-volume-source.c
(brasero_volume_source_read_device_handle):
Modified:
trunk/ChangeLog
trunk/src/burn-volume-source.c
Modified: trunk/src/burn-volume-source.c
==============================================================================
--- trunk/src/burn-volume-source.c (original)
+++ trunk/src/burn-volume-source.c Sun Aug 24 16:43:28 2008
@@ -114,18 +114,18 @@
src->data_mode,
BRASERO_SCSI_BLOCK_HEADER_NONE,
BRASERO_SCSI_BLOCK_NO_SUBCHANNEL,
- src->position ++,
+ src->position,
blocks,
(unsigned char *) buffer,
blocks * ISO9660_BLOCK_SIZE,
&code);
- if (result == BRASERO_SCSI_OK)
+ if (result == BRASERO_SCSI_OK) {
+ src->position += blocks;
return TRUE;
+ }
/* Give it a last chance if the code is BRASERO_SCSI_INVALID_TRACK_MODE */
if (code == BRASERO_SCSI_INVALID_TRACK_MODE) {
- /* reset position */
- src->position --;
BRASERO_BURN_LOG ("Wrong track mode autodetecting mode for block %i",
src->position);
@@ -144,8 +144,10 @@
blocks * ISO9660_BLOCK_SIZE,
&code);
- if (result == BRASERO_SCSI_OK)
+ if (result == BRASERO_SCSI_OK) {
+ src->position += blocks;
return TRUE;
+ }
if (code != BRASERO_SCSI_INVALID_TRACK_MODE) {
BRASERO_BURN_LOG ("Failed with error code %i", code);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]