summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaekyun Kim <tkq.kim@samsung.com>2011-07-06 12:47:21 +0900
committerTaekyun Kim <tkq.kim@samsung.com>2011-07-06 12:47:21 +0900
commitaf9ab917f74079a6e2396660aa9de0c8e48276a5 (patch)
treea8d4a9ec36aff3fe775f2625adecccbb157e4f43
parent90f7ca7ffe181bf75483db4b30fe6939ba9a2992 (diff)
composite_bench: Silence warnings
-rw-r--r--test/composite_bench.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/composite_bench.c b/test/composite_bench.c
index 304c383..7ea8051 100644
--- a/test/composite_bench.c
+++ b/test/composite_bench.c
@@ -146,9 +146,9 @@ bench_repeat_mode(pixman_op_t op,
{
int i;
double t0, t1;
- void *src_buf;
- void *mask_buf;
- void *dst_buf;
+ void *src_buf = NULL;
+ void *mask_buf = NULL;
+ void *dst_buf = NULL;
int src_stride;
int mask_stride;
int dst_stride;