Commit 59b00941 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '03eb5574'

* commit '03eb5574':
  wmv2enc: Check memory allocation

Conflicts:
	libavcodec/wmv2enc.c

See: 6e8fe448Merged-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parents c7074375 03eb5574
...@@ -65,6 +65,7 @@ static av_cold int wmv2_encode_init(AVCodecContext *avctx) ...@@ -65,6 +65,7 @@ static av_cold int wmv2_encode_init(AVCodecContext *avctx)
avctx->extradata = av_mallocz(avctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); avctx->extradata = av_mallocz(avctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
if (!avctx->extradata) if (!avctx->extradata)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
encode_ext_header(w); encode_ext_header(w);
return 0; return 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