ecore_evas_x: fix memory leak when enter drag and drop, without a ee

this is something that can *never* happen otherwise we would have never
got this call. But lets make coverity happy.
This commit is contained in:
Marcel Hollerbach 2020-03-09 17:00:29 +01:00
parent fa988becd2
commit b97c051e6f
1 changed files with 1 additions and 1 deletions

View File

@ -4068,9 +4068,9 @@ _ecore_evas_x_dnd_enter(void *udata EINA_UNUSED, int type EINA_UNUSED, void *eve
eina_array_push(edata->xserver_atom_name_during_dnd, eina_stringshare_add(enter->types[i]));
}
ecore_evas_dnd_enter(ee, 1, eina_array_iterator_new(mime_tmp), EINA_POSITION2D(0,0)); //FIXME
eina_array_free(mime_tmp);
end:
eina_array_free(mime_tmp);
return ECORE_CALLBACK_PASS_ON;
}