]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/h264_refs: Fix long_idx check
authorMichael Niedermayer <michael@niedermayer.cc>
Sat, 19 Dec 2015 20:59:42 +0000 (21:59 +0100)
committerMichael Niedermayer <michael@niedermayer.cc>
Sat, 19 Dec 2015 21:17:54 +0000 (22:17 +0100)
Fixes out of array read
Fixes mozilla bug 1233606

Found-by: Tyson Smith
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/h264_refs.c

index b47c995da3135dd64a6843063c86a22b08dceaee..fbdcbd6d60e7f7527bfe9cdc7d6d7731e3d36dc3 100644 (file)
@@ -301,7 +301,7 @@ int ff_h264_decode_ref_pic_list_reordering(H264Context *h, H264SliceContext *sl)
 
                     long_idx = pic_num_extract(h, pic_id, &pic_structure);
 
-                    if (long_idx > 31) {
+                    if (long_idx > 31U) {
                         av_log(h->avctx, AV_LOG_ERROR,
                                "long_term_pic_idx overflow\n");
                         return AVERROR_INVALIDDATA;