summaryrefslogtreecommitdiffstats
path: root/libhb/scan.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/scan.c')
-rw-r--r--libhb/scan.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libhb/scan.c b/libhb/scan.c
index f60392cea..c2814f362 100644
--- a/libhb/scan.c
+++ b/libhb/scan.c
@@ -239,7 +239,10 @@ static int DecodePreviews( hb_scan_t * data, hb_title_t * title )
FILE * file_preview;
char filename[1024];
- hb_dvd_seek( data->dvd, (float) ( i + 1 ) / 11.0 );
+ if( !hb_dvd_seek( data->dvd, (float) ( i + 1 ) / 11.0 ) )
+ {
+ goto error;
+ }
hb_log( "scan: preview %d", i + 1 );