On Fri, Oct 21, 2011 at 05:58:52PM -0400, Justin Ruggles wrote:
> ---
>  libavformat/tta.c |    4 ++++
>  1 files changed, 4 insertions(+), 0 deletions(-)
> 
> diff --git a/libavformat/tta.c b/libavformat/tta.c
> index 87174c1..9efcd1d 100644
> --- a/libavformat/tta.c
> +++ b/libavformat/tta.c
> @@ -107,6 +107,10 @@ static int tta_read_header(AVFormatContext *s, 
> AVFormatParameters *ap)
>          return -1;
>      }
>      st->codec->extradata = 
> av_mallocz(st->codec->extradata_size+FF_INPUT_BUFFER_PADDING_SIZE);
> +    if (!st->codec->extradata) {
> +        st->codec->extradata_size = 0;
> +        return AVERROR(ENOMEM);
> +    }
>      avio_seek(s->pb, start_offset, SEEK_SET);
>      avio_read(s->pb, st->codec->extradata, st->codec->extradata_size);
>  
> -- 

simple return AVERROR(ENOMEM) should be enough but the patch looks good anyway
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to