From 223694b404e63211ad7d1bd2916c070a0b587703 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Mon, 13 Jun 2011 18:28:54 +0200 Subject: [PATCH] nsv: return error code instead of discarding it in read_header() --- libavformat/nsvdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c index b1efa5bd9c..81c672e388 100644 --- a/libavformat/nsvdec.c +++ b/libavformat/nsvdec.c @@ -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)