mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
libavformat/oggparsevorbis: Fix memleak on multiple headers
Fixes: Chromium bug 800123 Reported-by: Matt Wolenetz <wolenetz@google.com> Reviewed-by: Matt Wolenetz <wolenetz@google.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
367929bed9
commit
3934aa495d
@ -230,6 +230,10 @@ static int fixup_vorbis_headers(AVFormatContext *as,
|
||||
|
||||
len = priv->len[0] + priv->len[1] + priv->len[2];
|
||||
buf_len = len + len / 255 + 64;
|
||||
|
||||
if (*buf)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
ptr = *buf = av_realloc(NULL, buf_len);
|
||||
if (!ptr)
|
||||
return AVERROR(ENOMEM);
|
||||
|
Loading…
x
Reference in New Issue
Block a user