Module: libav Branch: master Commit: 0f0b5d643401d4d83322eeee0e57eb5a226ef9ab
Author: Ronald S. Bultje <[email protected]> Committer: Janne Grunau <[email protected]> Date: Fri Oct 14 23:43:29 2011 +0200 vp8: prevent read from uninitialized memory in decode_mvs Signed-off-by: Janne Grunau <[email protected]> --- libavcodec/vp8.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index 691324e..7442b99 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -492,6 +492,7 @@ void decode_mvs(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y) AV_ZERO32(&near_mv[0]); AV_ZERO32(&near_mv[1]); + AV_ZERO32(&near_mv[2]); /* Process MB on top, left and top-left */ #define MV_EDGE_CHECK(n)\ _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
