ecore/ecore_exe - removed duplicated null check.

This commit is contained in:
ChunEon Park 2014-05-27 20:44:37 +09:00
parent df60e63bf9
commit b5ca4c3500
1 changed files with 3 additions and 3 deletions

View File

@ -698,9 +698,9 @@ ecore_exe_pipe_run(const char *exe_cmd,
if (e)
{
e->exe = exe;
if (e) /* Send the event. */
ecore_event_add(ECORE_EXE_EVENT_ADD, e,
_ecore_exe_event_add_free, NULL);
/* Send the event. */
ecore_event_add(ECORE_EXE_EVENT_ADD, e,
_ecore_exe_event_add_free, NULL);
}
/* INF("Running as %d for %s.\n", exe->pid, exe->cmd); */
}