Skip to content
Snippets Groups Projects
Commit 59b00941 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

Merge commit '03eb5574'


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

Conflicts:
	libavcodec/wmv2enc.c

See: 6e8fe448
Merged-by: default avatarMichael Niedermayer <michael@niedermayer.cc>
parents c7074375 03eb5574
No related branches found
No related tags found
No related merge requests found
...@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment