On 12/05/15 17:55, Luca Barbato wrote:
> From: Vittorio Giovara <[email protected]>
> 
> ---
>  libavcodec/asvenc.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/libavcodec/asvenc.c b/libavcodec/asvenc.c
> index f8c52af..0879615 100644
> --- a/libavcodec/asvenc.c
> +++ b/libavcodec/asvenc.c
> @@ -299,6 +299,8 @@ static av_cold int encode_init(AVCodecContext *avctx)
>                       avctx->global_quality / 2) / avctx->global_quality;
>  
>      avctx->extradata                   = av_mallocz(8);
> +    if (!avctx->extradata)
> +        return AVERROR(ENOMEM);
>      avctx->extradata_size              = 8;
>      ((uint32_t *) avctx->extradata)[0] = av_le2ne32(a->inv_qscale);
>      ((uint32_t *) avctx->extradata)[1] = av_le2ne32(AV_RL32("ASUS"));
> 

Sounds fine.
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to