[FFmpeg-cvslog] h264: check buffer size before accessing it

Anton Khirnov git at videolan.org
Fri Nov 22 12:01:47 CET 2013


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Fri Nov 15 10:15:24 2013 +0100| [f0259a587ee3419dd894873ea617b4c98eeaca1c] | committer: Anton Khirnov

h264: check buffer size before accessing it

Fixes invalid reads.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC:libav-stable at libav.org

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f0259a587ee3419dd894873ea617b4c98eeaca1c
---

 libavcodec/h264.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 62e4940..86d453b 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -4554,7 +4554,7 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size,
                 h->workaround_bugs |= FF_BUG_TRUNCATED;
 
             if (!(h->workaround_bugs & FF_BUG_TRUNCATED))
-                while (ptr[dst_length - 1] == 0 && dst_length > 0)
+                while (dst_length > 0 && ptr[dst_length - 1] == 0)
                     dst_length--;
             bit_length = !dst_length ? 0
                                      : (8 * dst_length -



More information about the ffmpeg-cvslog mailing list