From: Christopher Michael Date: Thu, 2 May 2019 11:48:27 +0000 (+0200) Subject: eina_test_ustr: Fix resource leak X-Git-Tag: accepted/tizen/unified/20190509.041000~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4f056d2d35a9d7c6e796a4ba27d94906d63b7d95;p=platform%2Fupstream%2Fefl.git eina_test_ustr: Fix resource leak Summary: Coverity reports that we leak 'buf' here so add a call to free Fixes CID1400784 @fix Depends on D8781 Reviewers: raster, cedric, zmike, bu5hm4n, segfaultxavi Reviewed By: segfaultxavi Subscribers: segfaultxavi, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D8782 --- diff --git a/src/tests/eina/eina_test_ustr.c b/src/tests/eina/eina_test_ustr.c index 6c8edcf..308059b 100644 --- a/src/tests/eina/eina_test_ustr.c +++ b/src/tests/eina/eina_test_ustr.c @@ -295,7 +295,7 @@ EFL_START_TEST(eina_unicode_strdup_test) buf = eina_unicode_strdup(EMPTYSTR); fail_if(!buf); fail_if(buf[0] != 0); - + free(buf); } EFL_END_TEST