summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c
diff options
context:
space:
mode:
authorVinson Lee <vlee@freedesktop.org>2013-08-17 15:23:15 -0700
committerVinson Lee <vlee@freedesktop.org>2013-08-28 23:23:49 -0700
commit57684d52e9a37a73dbcb6c71d04ea776b08bd003 (patch)
treec40f1e3ca1211d4df242a9e370a9b56229c12e2b /src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c
parentdf06745c5adb524e15d157f976c08f1718f08efa (diff)
nouveau: Copy m4x4 and m8x8 separately.
Silences Coverity "Out-of-bounds access" defect. Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Diffstat (limited to 'src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c')
-rw-r--r--src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c b/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c
index 199c43d6d00..add998d98ef 100644
--- a/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c
+++ b/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c
@@ -363,7 +363,8 @@ nouveau_vp3_fill_picparm_h264_vp(struct nouveau_vp3_decoder *dec,
h->field_order_cnt[0] = d->field_order_cnt[0];
h->field_order_cnt[1] = d->field_order_cnt[1];
memset(h->refs, 0, sizeof(h->refs));
- memcpy(h->m4x4, d->scaling_lists_4x4, sizeof(h->m4x4) + sizeof(h->m8x8));
+ memcpy(h->m4x4, d->scaling_lists_4x4, sizeof(h->m4x4));
+ memcpy(h->m8x8, d->scaling_lists_8x8, sizeof(h->m8x8));
h->u220 = 0;
for (i = 0; i < d->num_ref_frames; ++i) {
if (!d->ref[i])