1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

wtv: clean memory on error

CC: libav-stable@libav.org
Bug-Id: CID 718002
This commit is contained in:
Vittorio Giovara 2014-10-18 01:12:18 +01:00
parent 9fbc613f0d
commit 7b48bf9524

View File

@ -632,8 +632,10 @@ static AVStream * new_stream(AVFormatContext *s, AVStream *st, int sid, int code
if (!wst)
return NULL;
st = avformat_new_stream(s, NULL);
if (!st)
if (!st) {
av_free(wst);
return NULL;
}
st->id = sid;
st->priv_data = wst;
}