avformat/oggparsecelt: fix memleak
Fixes: CID1108605 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -48,8 +48,10 @@ static int celt_header(AVFormatContext *s, int idx)
|
|||||||
priv = av_malloc(sizeof(struct oggcelt_private));
|
priv = av_malloc(sizeof(struct oggcelt_private));
|
||||||
if (!priv)
|
if (!priv)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
if (ff_alloc_extradata(st->codec, 2 * sizeof(uint32_t)) < 0)
|
if (ff_alloc_extradata(st->codec, 2 * sizeof(uint32_t)) < 0) {
|
||||||
|
av_free(priv);
|
||||||
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 */
|
||||||
sample_rate = AV_RL32(p + 36);
|
sample_rate = AV_RL32(p + 36);
|
||||||
|
Reference in New Issue
Block a user