From d286702ed48ef624cb96840bab147fa53a9ae191 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 25 Mar 2003 00:44:27 +0000 Subject: [PATCH] free the startup stacking order after using it --- openbox/client.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openbox/client.c b/openbox/client.c index 6d32c407..b1655eee 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -131,6 +131,9 @@ void client_manage_all() c = g_hash_table_lookup(client_map, &w); if (c) stacking_lower(c); } + g_free(client_startup_stack_order); + client_startup_stack_order = NULL; + client_startup_stack_size = 0; } void client_manage(Window window) -- 2.44.0