From: Mike McCormack <mj.mccormack@samsung.com>

Subject: [E-devel] [PATCH 3/4] ecore_con: Always close fd after remove
fdh from main loop



SVN revision: 55571
This commit is contained in:
Mike McCormack 2010-12-16 04:39:38 +00:00 committed by Carsten Haitzler
parent bdf1b4b330
commit c9b693655c
1 changed files with 1 additions and 1 deletions

View File

@ -366,8 +366,8 @@ _ecore_con_info_slave_free(CB_Data *cbdata)
info_slaves = (CB_Data *)eina_inlist_remove(EINA_INLIST_GET(info_slaves),
EINA_INLIST_GET(cbdata));
ecore_main_fd_handler_del(cbdata->fdh);
close(ecore_main_fd_handler_fd_get(cbdata->fdh));
ecore_event_handler_del(cbdata->handler);
close(ecore_main_fd_handler_fd_get(cbdata->fdh));
free(cbdata);
}