From 9c611f6ef94fce218172c2f22b40d34b6bdbed1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Fri, 10 May 2024 01:17:41 +0200 Subject: [PATCH] glib/tests/mapping: Unref the mapped file on exit --- glib/tests/mapping.c | 1 + 1 file changed, 1 insertion(+) diff --git a/glib/tests/mapping.c b/glib/tests/mapping.c index 5fcde83ae..bbd4de8b0 100644 --- a/glib/tests/mapping.c +++ b/glib/tests/mapping.c @@ -125,6 +125,7 @@ child_main (void) g_free (childname); g_free (global_filename); g_free (dir); + g_mapped_file_unref (map); signal_parent (NULL); }