From b64d41144892754774ab42d6eaddf4195a58f066 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Tue, 15 Jun 2021 16:20:08 +0300 Subject: [PATCH] tests: fix leak in ivi-shell-app-test Found by ASan. Signed-off-by: Pekka Paalanen --- tests/ivi-shell-app-test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ivi-shell-app-test.c b/tests/ivi-shell-app-test.c index cad2d859..65c5b0d3 100644 --- a/tests/ivi-shell-app-test.c +++ b/tests/ivi-shell-app-test.c @@ -179,5 +179,6 @@ TEST(ivi_application_exists) testlog("Successful bind: %p\n", iviapp); + ivi_application_destroy(iviapp); client_destroy(client); }