Always return before error handler

SVN revision: 54928
This commit is contained in:
Sebastian Dransfeld 2010-11-24 10:33:40 +00:00
parent b645d20ab2
commit 1f83aecc41
1 changed files with 1 additions and 1 deletions

View File

@ -607,7 +607,6 @@ cache_update_cb(void *data __UNUSED__, Ecore_File_Monitor *em __UNUSED__,
efreet_util_desktop_cache_reload();
ecore_event_add(EFREET_EVENT_DESKTOP_CACHE_UPDATE, ev, desktop_cache_update_free, d);
return;
}
#ifdef ICON_CACHE
else if (!strcmp(file, "icon_data.update"))
@ -618,6 +617,7 @@ cache_update_cb(void *data __UNUSED__, Ecore_File_Monitor *em __UNUSED__,
if (!ev) return;
ecore_event_add(EFREET_EVENT_ICON_CACHE_UPDATE, ev, NULL, NULL);
}
return;
#endif
error:
IF_FREE(ev);