avformat/mpegenc: check for stream private data during deinit

Prevents pointer dereferences when streams were not fully initialized.

Signed-off-by: James Almer <jamrial@gmail.com>
pull/324/head
James Almer 6 years ago
parent 1d479300cb
commit 0700e7247b
  1. 2
      libavformat/mpegenc.c

@ -1258,6 +1258,8 @@ static void mpeg_mux_deinit(AVFormatContext *ctx)
{ {
for (int i = 0; i < ctx->nb_streams; i++) { for (int i = 0; i < ctx->nb_streams; i++) {
StreamInfo *stream = ctx->streams[i]->priv_data; StreamInfo *stream = ctx->streams[i]->priv_data;
if (!stream)
continue;
av_fifo_freep(&stream->fifo); av_fifo_freep(&stream->fifo);
} }
} }

Loading…
Cancel
Save