From c837af137b2c605b283a1b342f2f65d61af5c005 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Mon, 7 Dec 2009 23:55:01 +0000 Subject: [PATCH] Don't NULL out exe here (this was causing a lot of quiet errors wrt ecore_exe_pid_get because inst->exe was NULL). SVN revision: 44267 --- src/bin/e_exec.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bin/e_exec.c b/src/bin/e_exec.c index 44bc60a85..3d56d12ba 100644 --- a/src/bin/e_exec.c +++ b/src/bin/e_exec.c @@ -391,7 +391,6 @@ _e_exec_cb_exit(void *data, int type, void *event) { if (inst->expire_timer) ecore_timer_del(inst->expire_timer); inst->expire_timer = ecore_timer_add(30.0, _e_exec_cb_instance_finish, inst); - inst->exe = NULL; } else _e_exec_instance_free(inst);