From eca16677c0b576f6a403648d97faa79e1f8b0d3a Mon Sep 17 00:00:00 2001 From: Michael Catanzaro Date: Wed, 12 Jun 2019 14:49:34 -0500 Subject: [PATCH] gdbus: Fix minor leak in peer test This has to be freed even on Windows. --- gio/tests/gdbus-peer.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gio/tests/gdbus-peer.c b/gio/tests/gdbus-peer.c index 3a6c94829..0e0183923 100644 --- a/gio/tests/gdbus-peer.c +++ b/gio/tests/gdbus-peer.c @@ -1773,8 +1773,7 @@ main (int argc, g_main_loop_unref (loop); g_free (test_guid); g_dbus_node_info_unref (introspection_data); - if (is_unix) - g_free (tmp_address); + g_free (tmp_address); if (tmpdir) { g_rmdir (tmpdir);