21255d
From 7444c6ed3628484dfed2f204c5b78a06a50f4bd8 Mon Sep 17 00:00:00 2001
21255d
From: Yu Watanabe <watanabe.yu+github@gmail.com>
21255d
Date: Wed, 29 Aug 2018 23:27:42 +0900
21255d
Subject: [PATCH] test: fix a memleak
21255d
21255d
Follow-up for #9901.
21255d
21255d
Fixes #9968.
21255d
21255d
(cherry picked from commit efa146369398fdb73f1cd177eb2522822ebf559c)
21255d
21255d
Related: #1812972
21255d
---
21255d
 src/test/test-install-root.c | 1 +
21255d
 1 file changed, 1 insertion(+)
21255d
21255d
diff --git a/src/test/test-install-root.c b/src/test/test-install-root.c
21255d
index dbbcfe4297..fe1ca5b16f 100644
21255d
--- a/src/test/test-install-root.c
21255d
+++ b/src/test/test-install-root.c
21255d
@@ -1037,6 +1037,7 @@ static void test_preset_multiple_instances(const char *root) {
21255d
         assert_se(unit_file_get_state(UNIT_FILE_SYSTEM, root, "foo@bar1.service", &state) >= 0 && state == UNIT_FILE_ENABLED);
21255d
         assert_se(unit_file_get_state(UNIT_FILE_SYSTEM, root, "foo@bartest.service", &state) >= 0 && state == UNIT_FILE_ENABLED);
21255d
 
21255d
+        unit_file_changes_free(changes, n_changes);
21255d
 }
21255d
 
21255d
 int main(int argc, char *argv[]) {