emile_test_base64: Fix resource leak

Summary:
Coverity reports that we leak the storage returned from
eina_binbuf_new here, so lets add a call to eina_binbuf_free before we
exit

Fixes CID1400852

@fix
Depends on D8776

Reviewers: raster, cedric, zmike, bu5hm4n, segfaultxavi

Reviewed By: segfaultxavi

Subscribers: segfaultxavi, #reviewers, #committers

Tags: #efl

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

View File

@ -113,6 +113,7 @@ EFL_START_TEST(emile_test_base64_url)
eina_strbuf_append(str, "TWFu");
decoded = emile_base64url_decode(str);
eina_strbuf_free(str);
eina_binbuf_free(buffer);
fail_if(memcmp(eina_binbuf_string_get(decoded), "Man", 3));
eina_binbuf_free(decoded);
}