From fae525eb05ff05f04d976c59e739e7be49f6efa4 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 2 Jul 2012 13:37:22 +0000 Subject: [PATCH] probably shouldn't free pointers right before they're used SVN revision: 73166 --- src/modules/notification/e_mod_box.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/notification/e_mod_box.c b/src/modules/notification/e_mod_box.c index 48b6bc1bd..713ffc3d3 100644 --- a/src/modules/notification/e_mod_box.c +++ b/src/modules/notification/e_mod_box.c @@ -96,8 +96,8 @@ notification_box_del(const char *id) { if (b->id == id) { - _notification_box_free(b); notification_cfg->n_box = eina_list_remove(notification_cfg->n_box, b); + _notification_box_free(b); return; } }