Browse Source

Fixed segfault on memory allocation failure in ape demuxer.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 1632a576e6)
tags/n0.8.4
Laurent Aimar Michael Niedermayer 14 years ago
parent
commit
4601765ee8
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavformat/ape.c

+ 2
- 0
libavformat/ape.c View File

@@ -270,6 +270,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);
}


Loading…
Cancel
Save