avformat/oggparsevorbis: Error out on double init of vp
Fixes: memleak Fixes: 19949/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5743636058210304 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 2a3bbc0086aa608cc0465dd14901178d41cfe113) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
9ffcbf1db9
commit
6555a71388
@ -386,7 +386,12 @@ static int vorbis_header(AVFormatContext *s, int idx)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
int ret = fixup_vorbis_headers(s, priv, &st->codecpar->extradata);
|
int ret;
|
||||||
|
|
||||||
|
if (priv->vp)
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
|
|
||||||
|
ret = fixup_vorbis_headers(s, priv, &st->codecpar->extradata);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
st->codecpar->extradata_size = 0;
|
st->codecpar->extradata_size = 0;
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user