Gave up CLOSE TRACK with CD TAO burn runs

This commit is contained in:
Thomas Schmitt 2009-12-02 10:29:45 +00:00
parent dda4ca8108
commit 2ca3d2d5c3
2 changed files with 9 additions and 4 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2009.11.30.100152" #define Cdrskin_timestamP "2009.12.02.103036"

View File

@ -890,9 +890,14 @@ ex:;
next track. cdrecord does not use CLOSE TRACK at all but next track. cdrecord does not use CLOSE TRACK at all but
ends the tracks by SYNCHRONIZE CACHE alone. ends the tracks by SYNCHRONIZE CACHE alone.
*/ */
if (!o->simulate) /* ts A91202 :
if (burn_write_close_track(o, s, tnum) <= 0) Peng Shao reports that his LG GH22LS30 issues an SCSI error
ret = 0; on CLOSE TRACK even in non-dummy mode. So i better give up
this gesture which seems not be needed by any drive.
if (!o->simulate)
if (burn_write_close_track(o, s, tnum) <= 0)
ret = 0;
*/
} }
return ret; return ret;
} }