avformat/oggparsecelt/celt_header: fix memleak
Fixes: CID1108605 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
baab248c49
commit
b294a4beec
@ -46,7 +46,9 @@ static int celt_header(AVFormatContext *s, int idx)
|
|||||||
uint32_t overlap, extra_headers;
|
uint32_t overlap, extra_headers;
|
||||||
|
|
||||||
priv = av_malloc(sizeof(struct oggcelt_private));
|
priv = av_malloc(sizeof(struct oggcelt_private));
|
||||||
if (!priv || ff_alloc_extradata(st->codec, 2 * sizeof(uint32_t)))
|
if (!priv)
|
||||||
|
return AVERROR(ENOMEM);
|
||||||
|
if (ff_alloc_extradata(st->codec, 2 * sizeof(uint32_t)) < 0)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
version = AV_RL32(p + 28);
|
version = AV_RL32(p + 28);
|
||||||
/* unused header size field skipped */
|
/* unused header size field skipped */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user