From 53629e2fd2eda8675a44f22d1df65db606baa035 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sat, 29 Jul 2017 09:44:54 +0900 Subject: [PATCH] edje_cc - make list free simpler to make analysers happy analysers like PVS studio dont know the eina_list_free returning NULL design pattern for consistency and so dislike the var being set twice in a row. this will make them happy without any skin off our backs. not a bug at all. found by PVS studio --- src/bin/edje/edje_cc_handlers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c index 89e09abce8..84c21b428e 100644 --- a/src/bin/edje/edje_cc_handlers.c +++ b/src/bin/edje/edje_cc_handlers.c @@ -15816,7 +15816,7 @@ edje_cc_handlers_pop_notify(const char *token) { current_program = sequencing; ((Edje_Program_Parser*)sequencing)->can_override = EINA_TRUE; - current_program_lookups = eina_list_free(current_program_lookups); + eina_list_free(current_program_lookups); current_program_lookups = sequencing_lookups; sequencing_lookups = NULL; sequencing = NULL;