evas_test_mesh: Fix memory leak

Summary:
Coverity reports that we leak file_mask variable here (storage
returned from strdup), so lets free the variable before we exit the test

Fixes CID1401009

@fix

Depends on D8763

Reviewers: raster, cedric, zmike, bu5hm4n, segfaultxavi

Reviewed By: segfaultxavi

Subscribers: segfaultxavi, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8764
This commit is contained in:
Christopher Michael 2019-05-02 13:43:57 +02:00 committed by Xavi Artigas
parent f4db22139f
commit cf2071744c
1 changed files with 1 additions and 0 deletions

View File

@ -169,6 +169,7 @@ EFL_START_TEST(evas_object_mesh_loader_saver)
unlink(tmp);
free(file_mask);
evas_free(e);
}
EFL_END_TEST