OSDN Git Service

nsv: return error code instead of discarding it in read_header()
authorAurelien Jacobs <aurel@gnuage.org>
Mon, 13 Jun 2011 16:28:54 +0000 (18:28 +0200)
committerAurelien Jacobs <aurel@gnuage.org>
Mon, 13 Jun 2011 16:28:54 +0000 (18:28 +0200)
libavformat/nsvdec.c

index b1efa5b..81c672e 100644 (file)
@@ -531,7 +531,7 @@ static int nsv_read_header(AVFormatContext *s, AVFormatParameters *ap)
     err = nsv_read_chunk(s, 1);
 
     av_dlog(s, "parsed header\n");
-    return 0;
+    return err;
 }
 
 static int nsv_read_chunk(AVFormatContext *s, int fill_header)