mirror of https://git.ffmpeg.org/ffmpeg.git
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>
This commit is contained in:
parent
6268034b5d
commit
2a3bbc0086
|
@ -385,7 +385,12 @@ static int vorbis_header(AVFormatContext *s, int idx)
|
|||
}
|
||||
}
|
||||
} 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) {
|
||||
st->codecpar->extradata_size = 0;
|
||||
return ret;
|
||||
|
|
Loading…
Reference in New Issue