[Intel-gfx] [PATCH i-g-t 3/3] tests/gem_seqno_wrap: fix over allocation of buffers
Thomas Wood
thomas.wood at intel.com
Fri Feb 7 18:03:39 CET 2014
Signed-off-by: Thomas Wood <thomas.wood at intel.com>
---
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));
--
1.8.5.3
More information about the Intel-gfx
mailing list