From d8ccfebff36eedee55226bd61187e2676926fb0d Mon Sep 17 00:00:00 2001 From: sebastid Date: Tue, 19 Apr 2005 09:08:36 +0000 Subject: [PATCH] Fix. SVN revision: 14245 --- src/bin/e_apps.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/e_apps.c b/src/bin/e_apps.c index 7ff4624bc..0a4fb430d 100644 --- a/src/bin/e_apps.c +++ b/src/bin/e_apps.c @@ -378,7 +378,7 @@ _e_app_free(E_App *a) { E_App *a2; - a2 = l->next; + a2 = l->data; a2->subapps = evas_list_remove(a2->subapps, a); } evas_list_free(a->references); @@ -753,6 +753,7 @@ _e_app_cb_monitor(void *data, Ecore_File_Monitor *em, else if (event == ECORE_FILE_EVENT_DELETED_FILE) { E_App *a; + Evas_List *l; a = _e_app_subapp_file_find(app, file); if (a)