summaryrefslogtreecommitdiff
path: root/libavcodec/interplayvideo.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2019-07-11 22:29:10 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2019-08-03 17:44:23 +0200
commita3adc3b6a0a882bbe918dc2f6c11b734e1d76037 (patch)
treec07e3cbb3228bf7adf0bf0edd137ec6e8d1d5478 /libavcodec/interplayvideo.c
parent07357cd93355d553dde698933a8176dd48b98344 (diff)
downloadffmpeg-a3adc3b6a0a882bbe918dc2f6c11b734e1d76037.tar.gz
avcodec/interplayvideo: Avoid ff_get_buffer() during init
This is unneeded for interplay video Fixes: memleak Fixes: 15562/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_INTERPLAY_VIDEO_fuzzer-5162268645392384 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/interplayvideo.c')
-rw-r--r--libavcodec/interplayvideo.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/interplayvideo.c b/libavcodec/interplayvideo.c
index 4313fdf7ac..c26ffbaee7 100644
--- a/libavcodec/interplayvideo.c
+++ b/libavcodec/interplayvideo.c
@@ -1181,14 +1181,6 @@ static av_cold int ipvideo_decode_init(AVCodecContext *avctx)
s->cur_decode_frame->format = avctx->pix_fmt;
s->prev_decode_frame->format = avctx->pix_fmt;
- ret = ff_get_buffer(avctx, s->cur_decode_frame, 0);
- if (ret < 0)
- goto error;
-
- ret = ff_get_buffer(avctx, s->prev_decode_frame, 0);
- if (ret < 0)
- goto error;
-
return 0;
error:
av_frame_free(&s->last_frame);