Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2018-07-06 13:01:46 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2018-07-07 13:09:34 +0300
commit284dde24dab30225ed3e233b0e5908d67d7e13e7 (patch)
tree4aaa73ed1725c81ee1b93f74bab19bb319efc407 /libavcodec/vp8_parser.c
parent5c0fd9df87ba5d6024cf61c7da396979c79f1856 (diff)
avcodec/vp8_parser: Do not leave data/size uninitialized
This is identical to what the VP9 parser does Fixes: 9215/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_LIBVPX_VP8_fuzzer-5768227253649408 Fixes: out of memory access This may also fix oss fuzz issue 9212 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/vp8_parser.c')
-rw-r--r--libavcodec/vp8_parser.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/vp8_parser.c b/libavcodec/vp8_parser.c
index 609f5077d1..e2d91b271f 100644
--- a/libavcodec/vp8_parser.c
+++ b/libavcodec/vp8_parser.c
@@ -28,6 +28,9 @@ static int parse(AVCodecParserContext *s,
unsigned int frame_type;
unsigned int profile;
+ *poutbuf = buf;
+ *poutbuf_size = buf_size;
+
if (buf_size < 3)
return buf_size;