From e584914acddaeb21f5258d9947b530fbd9421ab8 Mon Sep 17 00:00:00 2001 From: Mike Melanson Date: Wed, 4 Mar 2009 05:40:53 +0000 Subject: Fix a condition that causes an infinite loop, but only when compiled with gcc 4.2.4 on x86_32. Thanks to Vitor for hunting this down. Originally committed as revision 17802 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/wc3movie.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/wc3movie.c') diff --git a/libavformat/wc3movie.c b/libavformat/wc3movie.c index 6d7592f070..59b11ae2b2 100644 --- a/libavformat/wc3movie.c +++ b/libavformat/wc3movie.c @@ -293,7 +293,7 @@ static int wc3_read_packet(AVFormatContext *s, /* get the next chunk preamble */ if ((ret = get_buffer(pb, preamble, WC3_PREAMBLE_SIZE)) != WC3_PREAMBLE_SIZE) - ret = AVERROR(EIO); + return AVERROR(EIO); fourcc_tag = AV_RL32(&preamble[0]); /* chunk sizes are 16-bit aligned */ -- cgit v1.2.3