You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
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>
This commit is contained in:
@@ -1258,6 +1258,8 @@ static void mpeg_mux_deinit(AVFormatContext *ctx)
|
||||
{
|
||||
for (int i = 0; i < ctx->nb_streams; i++) {
|
||||
StreamInfo *stream = ctx->streams[i]->priv_data;
|
||||
if (!stream)
|
||||
continue;
|
||||
av_fifo_freep(&stream->fifo);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user