From c4cbdca127d30b5cc8ab8d6daf22b902fe16a1b1 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Fri, 9 Oct 2015 12:23:41 +0100 Subject: [PATCH] Eio model test: initialise pointer (clang warning). This is probably not an issue because the function should always return a value, but initialising this variable silence clang's warning and is not harmful anyway. --- src/tests/eio/eio_model_test_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/eio/eio_model_test_file.c b/src/tests/eio/eio_model_test_file.c index b54ef1592b..270cb870ad 100644 --- a/src/tests/eio/eio_model_test_file.c +++ b/src/tests/eio/eio_model_test_file.c @@ -153,7 +153,7 @@ START_TEST(eio_model_test_test_file) Eo *filemodel = NULL; const Eina_Value *value_prop; Efl_Model_Load_Status status; - Eina_Array *properties_list; + Eina_Array *properties_list = NULL; Eina_Array_Iterator iterator; char *str; unsigned int i;