OSDN Git Service

avcodec/vdpau_hevc: Fix potential out-of-bounds write
authorPhilip Langdale <philipl@overt.org>
Thu, 1 Dec 2016 00:13:14 +0000 (16:13 -0800)
committerPhilip Langdale <philipl@overt.org>
Thu, 1 Dec 2016 00:14:39 +0000 (16:14 -0800)
The maximum number of references is 16, so the index value cannot
exceed 15.

Fixes Coverity CID 134813913481401348141

libavcodec/vdpau_hevc.c

index 03c61dc..ce2610f 100644 (file)
@@ -234,7 +234,7 @@ static int vdpau_hevc_start_frame(AVCodecContext *avctx,
         const HEVCFrame *frame = &h->DPB[i];
         if (frame != h->ref && (frame->flags & (HEVC_FRAME_FLAG_LONG_REF |
                                                 HEVC_FRAME_FLAG_SHORT_REF))) {
-            if (j > 16) {
+            if (j > 15) {
                 av_log(avctx, AV_LOG_WARNING,
                      "VDPAU only supports up to 16 references in the DPB. "
                      "This frame may not be decoded correctly.\n");