Commit fd9e88fe authored by Michael Niedermayer's avatar Michael Niedermayer

libavfilter/lavfutils: remove useless NULL check on codec context

The code would crash before if it was NULL

Fixes CID733804
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a4fe6611
...@@ -85,8 +85,7 @@ int ff_load_image(uint8_t *data[4], int linesize[4], ...@@ -85,8 +85,7 @@ int ff_load_image(uint8_t *data[4], int linesize[4],
av_image_copy(data, linesize, (const uint8_t **)frame->data, frame->linesize, *pix_fmt, *w, *h); av_image_copy(data, linesize, (const uint8_t **)frame->data, frame->linesize, *pix_fmt, *w, *h);
end: end:
if (codec_ctx) avcodec_close(codec_ctx);
avcodec_close(codec_ctx);
if (format_ctx) if (format_ctx)
avformat_close_input(&format_ctx); avformat_close_input(&format_ctx);
av_freep(&frame); av_freep(&frame);
......
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