Commit 3c723719 authored by bcoudurier's avatar bcoudurier

cannot free AVStream like this, and return ENOMEM

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12529 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6e79762a
......@@ -1204,10 +1204,7 @@ static int mov_read_trak(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
st = av_new_stream(c->fc, c->fc->nb_streams);
if (!st) return -2;
sc = av_mallocz(sizeof(MOVStreamContext));
if (!sc) {
av_free(st);
return -1;
}
if (!sc) return AVERROR(ENOMEM);
st->priv_data = sc;
st->codec->codec_type = CODEC_TYPE_DATA;
......
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