From 1600431e80387fd8802555f67c9f4e917e5cb613 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Tue, 15 Jun 2021 16:53:52 +0300 Subject: [PATCH] tests: fix leaks in presentation-test Fixes all leaks found by ASan. Signed-off-by: Pekka Paalanen --- tests/presentation-test.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/presentation-test.c b/tests/presentation-test.c index 5e9d991f..f6e3a7bc 100644 --- a/tests/presentation-test.c +++ b/tests/presentation-test.c @@ -247,4 +247,6 @@ TEST(test_presentation_feedback_simple) testlog("\n"); feedback_destroy(fb); + wp_presentation_destroy(pres); + client_destroy(client); }