提交 80cce599 编写于 作者: M Michael Niedermayer

avcodec/ivi: Avoid mbs memleak

Fixes: 11696/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_INDEO5_fuzzer-5740319635668992

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by: NMichael Niedermayer <michael@niedermayer.cc>
上级 fbf409cd
......@@ -437,6 +437,14 @@ av_cold int ff_ivi_init_tiles(IVIPlaneDesc *planes,
for (b = 0; b < planes[p].num_bands; b++) {
band = &planes[p].bands[b];
if (band->tiles) {
int t;
for (t = 0; t < band->num_tiles; t++) {
av_freep(&band->tiles[t].mbs);
}
}
x_tiles = IVI_NUM_TILES(band->width, t_width);
y_tiles = IVI_NUM_TILES(band->height, t_height);
band->num_tiles = x_tiles * y_tiles;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册