mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
fixup_vorbis_headers: add missing malloc failure check
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
0451ff295a
commit
033f1644b5
@ -179,6 +179,8 @@ fixup_vorbis_headers(AVFormatContext * as, struct oggvorbis_private *priv,
|
||||
len = priv->len[0] + priv->len[1] + priv->len[2];
|
||||
buf_len = len + len/255 + 64;
|
||||
ptr = *buf = av_realloc(NULL, buf_len);
|
||||
if (!*buf)
|
||||
return 0;
|
||||
memset(*buf, '\0', buf_len);
|
||||
|
||||
ptr[0] = 2;
|
||||
|
Loading…
x
Reference in New Issue
Block a user