Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>2015-03-09 01:31:48 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-03-09 05:14:16 +0300
commit6fa98822eba501a4898fdec5b75acd3026201005 (patch)
tree5b3fcd5a20353ef28a65592314665dc142dd9c44 /libavformat/ffmdec.c
parent66879ee125944b0efde673d9fbebbe9489853e59 (diff)
ffmdec: fix infinite loop at EOF
If EOF is reached, while skipping bytes, avio_tell(pb) won't change anymore, resulting in an infinite loop. Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/ffmdec.c')
-rw-r--r--libavformat/ffmdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/ffmdec.c b/libavformat/ffmdec.c
index 280a24cb38..96527a3aa5 100644
--- a/libavformat/ffmdec.c
+++ b/libavformat/ffmdec.c
@@ -434,7 +434,7 @@ static int ffm2_read_header(AVFormatContext *s)
}
/* get until end of block reached */
- while ((avio_tell(pb) % ffm->packet_size) != 0)
+ while ((avio_tell(pb) % ffm->packet_size) != 0 && !pb->eof_reached)
avio_r8(pb);
/* init packet demux */
@@ -561,7 +561,7 @@ static int ffm_read_header(AVFormatContext *s)
}
/* get until end of block reached */
- while ((avio_tell(pb) % ffm->packet_size) != 0)
+ while ((avio_tell(pb) % ffm->packet_size) != 0 && !pb->eof_reached)
avio_r8(pb);
/* init packet demux */