efl_ui_test_widget: Fix resource leak

Summary:
Coverity reports that we leak the storage returned from eina_array_new
here, so lets add a call to eina_array_free

Fixes CID1400857

@fix
Depends on D8775

Reviewers: raster, cedric, zmike, bu5hm4n, segfaultxavi

Reviewed By: segfaultxavi

Subscribers: segfaultxavi, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8776
This commit is contained in:
Christopher Michael 2019-05-02 13:47:50 +02:00 committed by Xavi Artigas
parent aef0da9dd2
commit 8eae5d3215
1 changed files with 1 additions and 0 deletions

View File

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