ecore: Fix memory leak and logic

@cedric... how could this even happen??
This commit is contained in:
Jean-Philippe Andre 2017-03-14 22:28:50 +09:00
parent 1140ce2cd2
commit d14b6e3f84
1 changed files with 2 additions and 2 deletions

View File

@ -621,7 +621,7 @@ ecore_event_type_flush_internal(int type, ...)
eina_inarray_push(&types, &type); eina_inarray_push(&types, &type);
// In case of an empty list of event // In case of an empty list of event
if (type != ECORE_EVENT_NONE) return ; if (type == ECORE_EVENT_NONE) return;
va_start(args, type); va_start(args, type);
do do
@ -637,7 +637,7 @@ ecore_event_type_flush_internal(int type, ...)
{ {
if (*itr >= 0 && *itr < event_id_max) continue; if (*itr >= 0 && *itr < event_id_max) continue;
ERR("Invalide event flush requested %i\n", *itr); ERR("Invalid event flush requested: %i", *itr);
wrong_type = EINA_TRUE; wrong_type = EINA_TRUE;
} }