[FFmpeg-cvslog] ape demuxer: fix segfault on memory allocation failure.
Laurent Aimar
git at videolan.org
Tue Sep 13 23:51:46 CEST 2011
ffmpeg | branch: master | Laurent Aimar <fenrir at videolan.org> | Sun Sep 11 19:17:40 2011 +0200| [273aab99bf7be2bcda95dd64101c2317ee0fcb99] | committer: Anton Khirnov
ape demuxer: fix segfault on memory allocation failure.
Signed-off-by: Anton Khirnov <anton at khirnov.net>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=273aab99bf7be2bcda95dd64101c2317ee0fcb99
---
libavformat/ape.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/libavformat/ape.c b/libavformat/ape.c
index a49da5c..088515c 100644
--- a/libavformat/ape.c
+++ b/libavformat/ape.c
@@ -273,6 +273,8 @@ static int ape_read_header(AVFormatContext * s, AVFormatParameters * ap)
if (ape->seektablelength > 0) {
ape->seektable = av_malloc(ape->seektablelength);
+ if (!ape->seektable)
+ return AVERROR(ENOMEM);
for (i = 0; i < ape->seektablelength / sizeof(uint32_t); i++)
ape->seektable[i] = avio_rl32(pb);
}
More information about the ffmpeg-cvslog
mailing list