probably shouldn't free pointers right before they're used

SVN revision: 73166
This commit is contained in:
Mike Blumenkrantz 2012-07-02 13:37:22 +00:00
parent 25b6a1bd1d
commit fae525eb05
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}