From d9184e351ddbb885542544bf3f2b704753c8757c Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Wed, 5 Jan 2011 03:14:34 +0000 Subject: [PATCH] on free of list.. set list ptr to null tnx. :) SVN revision: 55859 --- src/bin/e_gadcon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_gadcon.c b/src/bin/e_gadcon.c index dd3bb142c..786098d69 100644 --- a/src/bin/e_gadcon.c +++ b/src/bin/e_gadcon.c @@ -202,13 +202,13 @@ e_gadcon_init(void) EINTERN int e_gadcon_shutdown(void) { - eina_list_free(populate_requests); + populate_requests = eina_list_free(populate_requests); if (populate_idler) { ecore_idler_del(populate_idler); populate_idler = NULL; } - eina_list_free(custom_populate_requests); + custom_populate_requests = eina_list_free(custom_populate_requests); if (custom_populate_idler) { ecore_idler_del(custom_populate_idler);