Module: libav Branch: master Commit: f33b5ba63eee96c9d1c7f0e568169cb0c3694238
Author: Luca Barbato <[email protected]> Committer: Luca Barbato <[email protected]> Date: Fri Dec 14 09:55:04 2012 +0100 vp56: release frames on error Fixes CVE-2012-2783 CC: [email protected] --- libavcodec/vp56.c | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/libavcodec/vp56.c b/libavcodec/vp56.c index 6779ffb..5bd0a1a 100644 --- a/libavcodec/vp56.c +++ b/libavcodec/vp56.c @@ -514,8 +514,14 @@ int ff_vp56_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, s->modelp = &s->models[is_alpha]; res = s->parse_header(s, buf, remaining_buf_size, &golden_frame); - if (res < 0) + if (res < 0) { + int i; + for (i = 0; i < 4; i++) { + if (s->frames[i].data[0]) + avctx->release_buffer(avctx, &s->frames[i]); + } return res; + } if (res == VP56_SIZE_CHANGE) { int i; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
