Browse Source

matroskadec: check return values

CC: libav-stable@libav.org
Bug-Id: CID 733712
tags/n2.5
Vittorio Giovara 11 years ago
parent
commit
e0caa1eb4e
1 changed files with 9 additions and 1 deletions
  1. +9
    -1
      libavformat/matroskadec.c

+ 9
- 1
libavformat/matroskadec.c View File

@@ -2132,8 +2132,16 @@ static int matroska_parse_rm_audio(MatroskaDemuxContext *matroska,
}

while (track->audio.pkt_cnt) {
int ret;
AVPacket *pkt = av_mallocz(sizeof(AVPacket));
av_new_packet(pkt, a);
if (!pkt)
return AVERROR(ENOMEM);

ret = av_new_packet(pkt, a);
if (ret < 0) {
av_free(pkt);
return ret;
}
memcpy(pkt->data,
track->audio.buf + a * (h * w / a - track->audio.pkt_cnt--),
a);


Loading…
Cancel
Save