aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-10-03 22:50:45 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-03-12 00:47:05 +0100
commit5b2097626d0e4ccb432d7d8ab040aa8dbde9eb3a (patch)
tree0a279fec4f04705c2e2da6d161104c9daede0a92
parentfaf293a83af1133e3c54f901d00aadb70e81977f (diff)
downloadffmpeg-5b2097626d0e4ccb432d7d8ab040aa8dbde9eb3a.tar.gz
avcodec/smc: fix off by 1 error
Fixes out of array access Fixes: asan_heap-oob_1685bf0_5_asan_heap-oob_1f35116_430_smc.mov Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit c727401aa9d62335e89d118a5b4e202edf39d905) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/smc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/smc.c b/libavcodec/smc.c
index fddd5ab32a..ff185fbc3c 100644
--- a/libavcodec/smc.c
+++ b/libavcodec/smc.c
@@ -68,7 +68,7 @@ typedef struct SmcContext {
row_ptr += stride * 4; \
} \
total_blocks--; \
- if (total_blocks < 0) \
+ if (total_blocks < 0 + !!n_blocks) \
{ \
av_log(s->avctx, AV_LOG_INFO, "warning: block counter just went negative (this should not happen)\n"); \
return; \