diff options
| author | Michael Niedermayer <[email protected]> | 2015-12-19 21:59:42 +0100 | 
|---|---|---|
| committer | Michael Niedermayer <[email protected]> | 2015-12-19 22:17:54 +0100 | 
| commit | b92b4775a0d07cacfdd2b4be6511f3cb362c977b (patch) | |
| tree | 074fa5e03a5e72d276f05990d49321eb70aa14bc | |
| parent | b32a42295ad7b254f9662082d799c0aae2071c2e (diff) | |
avcodec/h264_refs: Fix long_idx check
Fixes out of array read
Fixes mozilla bug 1233606
Found-by: Tyson Smith
Signed-off-by: Michael Niedermayer <[email protected]>
| -rw-r--r-- | libavcodec/h264_refs.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/libavcodec/h264_refs.c b/libavcodec/h264_refs.c index b47c995da3..fbdcbd6d60 100644 --- a/libavcodec/h264_refs.c +++ b/libavcodec/h264_refs.c @@ -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; | 
