From 3dc24b3379fc4f9210dee7617accc5ef43879025 Mon Sep 17 00:00:00 2001 From: Thierry Foucu Date: Thu, 4 Jun 2020 13:03:15 -0700 Subject: libavcodec/mlp_parser.c: fix a use_of_uninitialized_value in target_dec_fuzzer. the target_dec_fuzzer is checking for the avpkt.data pointer but if the mlp parser cannot combine the frame, the poutbuf is not set. Signed-off-by: Michael Niedermayer --- libavcodec/mlp_parser.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavcodec/mlp_parser.c') diff --git a/libavcodec/mlp_parser.c b/libavcodec/mlp_parser.c index 5d2ddc5a70..e7162f4aa8 100644 --- a/libavcodec/mlp_parser.c +++ b/libavcodec/mlp_parser.c @@ -64,6 +64,7 @@ static int mlp_parse(AVCodecParserContext *s, s->key_frame = 0; *poutbuf_size = 0; + *poutbuf = NULL; if (buf_size == 0) return 0; -- cgit v1.2.3