null check

SVN revision: 13535
This commit is contained in:
handyande 2005-02-28 09:15:59 +00:00 committed by handyande
parent 0493ba4e33
commit ef86298a4d
1 changed files with 2 additions and 1 deletions

View File

@ -305,7 +305,8 @@ _ibar_free(IBar *ib)
while (ib->bars)
_ibar_bar_free(ib->bars->data);
e_object_unref(E_OBJECT(ib->apps));
if (ib->apps)
e_object_unref(E_OBJECT(ib->apps));
E_FREE(ib->conf->appdir);
e_app_change_callback_del(_ibar_app_change, ib);