From 01757d052c3427ee28b1a065652721877568a15f Mon Sep 17 00:00:00 2001 From: Thomas Wood Date: Fri, 7 Feb 2014 17:03:39 +0000 Subject: [PATCH] tests/gem_seqno_wrap: fix over allocation of arrays Signed-off-by: Thomas Wood Signed-off-by: Daniel Vetter --- tests/gem_seqno_wrap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/gem_seqno_wrap.c b/tests/gem_seqno_wrap.c index 40c6227..e37365f 100644 --- a/tests/gem_seqno_wrap.c +++ b/tests/gem_seqno_wrap.c @@ -207,13 +207,13 @@ static int run_sync_test(int num_buffers, bool verify) batch_3d = intel_batchbuffer_alloc(bufmgr, intel_get_drm_devid(fd)); igt_assert(batch_3d); - src = malloc(num_buffers * sizeof(**src)); + src = malloc(num_buffers * sizeof(*src)); igt_assert(src); - dst1 = malloc(num_buffers * sizeof(**dst1)); + dst1 = malloc(num_buffers * sizeof(*dst1)); igt_assert(dst1); - dst2 = malloc(num_buffers * sizeof(**dst2)); + dst2 = malloc(num_buffers * sizeof(*dst2)); igt_assert(dst2); s_src = malloc(num_buffers * sizeof(*s_src)); -- 2.7.4