Commit ae658efe authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/xmv: Check return code of ff_alloc_extradata()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 480cd822
...@@ -294,6 +294,7 @@ static int xmv_process_packet_header(AVFormatContext *s) ...@@ -294,6 +294,7 @@ static int xmv_process_packet_header(AVFormatContext *s)
{ {
XMVDemuxContext *xmv = s->priv_data; XMVDemuxContext *xmv = s->priv_data;
AVIOContext *pb = s->pb; AVIOContext *pb = s->pb;
int ret;
uint8_t data[8]; uint8_t data[8];
uint16_t audio_track; uint16_t audio_track;
...@@ -383,7 +384,8 @@ static int xmv_process_packet_header(AVFormatContext *s) ...@@ -383,7 +384,8 @@ static int xmv_process_packet_header(AVFormatContext *s)
if (vst->codec->extradata_size < 4) { if (vst->codec->extradata_size < 4) {
av_freep(&vst->codec->extradata); av_freep(&vst->codec->extradata);
ff_alloc_extradata(vst->codec, 4); if ((ret = ff_alloc_extradata(vst->codec, 4)) < 0)
return ret;
} }
memcpy(vst->codec->extradata, xmv->video.extradata, 4); memcpy(vst->codec->extradata, xmv->video.extradata, 4);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment