shut up eina

SVN revision: 50460
This commit is contained in:
Mike Blumenkrantz 2010-07-23 17:52:50 +00:00
parent 2e9651eeca
commit 15f3719964
1 changed files with 4 additions and 2 deletions

View File

@ -126,7 +126,8 @@ _ecore_thread_handler(void *data __UNUSED__, void *buffer, unsigned int nbyte)
ecore_pipe_del(work->u.long_run.notify);
pthread_cond_destroy(&work->cond);
pthread_mutex_destroy(&work->mutex);
eina_hash_free(work->hash);
if (work->hash)
eina_hash_free(work->hash);
free(work);
}
@ -333,7 +334,8 @@ _ecore_thread_shutdown(void)
ecore_pipe_del(pth->p);
}
eina_hash_free(_ecore_thread_global_hash);
if (_ecore_thread_global_hash)
eina_hash_free(_ecore_thread_global_hash);
ecore_event_handler_del(del_handler);
del_handler = NULL;
#endif