tests/ecore_wl2: Fix resource leak

Small patch to fix resource leak pointed out by Coverity

Fixes Coverity CID1403883
This commit is contained in:
Chris Michael 2019-09-17 09:35:43 -04:00
parent 21c7f95d08
commit 2d9fd1a827
1 changed files with 2 additions and 0 deletions

View File

@ -159,6 +159,8 @@ EFL_START_TEST(wl2_display_inputs_get)
itr = ecore_wl2_display_inputs_get(disp);
ck_assert(itr != NULL);
eina_iterator_free(itr);
}
EFL_END_TEST