Commit 9c87b8f7 authored by Reimar Döffinger's avatar Reimar Döffinger

Check for avcodec_open codec parameter == NULL and return error in that case

Originally committed as revision 11316 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a5baedea
......@@ -848,7 +848,7 @@ int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
goto end;
}
if(avctx->codec)
if(avctx->codec || !codec)
goto end;
if (codec->priv_data_size > 0) {
......
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