efl_ui_test_widget: Fix resource leak

Summary:
Coverity reports that we leak the variable 'a' here so lets add a call
to eina_array_free

Fixes CID1400824

@fix
Depends on D8778

Reviewers: raster, cedric, zmike, bu5hm4n, segfaultxavi

Reviewed By: segfaultxavi

Subscribers: segfaultxavi, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8779
This commit is contained in:
Christopher Michael 2019-05-02 13:48:11 +02:00 committed by Xavi Artigas
parent 9ea2e60b29
commit 25505c1431
1 changed files with 1 additions and 0 deletions

View File

@ -149,6 +149,7 @@ EFL_START_TEST(efl_ui_test_widget_iterator)
}
eina_iterator_free(it);
ck_assert_int_eq(eina_array_count(a), 0);
eina_array_free(a);
}
EFL_END_TEST