diff --git a/libavformat/wtvdec.c b/libavformat/wtvdec.c index 319b986ab4..a8dc506e84 100644 --- a/libavformat/wtvdec.c +++ b/libavformat/wtvdec.c @@ -580,8 +580,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; }