From: Dana Jansens Date: Tue, 25 Mar 2003 00:44:27 +0000 (+0000) Subject: free the startup stacking order after using it X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=d286702ed48ef624cb96840bab147fa53a9ae191;hp=e731042dc9f45555fbb1c52e2affaaf6ffeb141f;p=chaz%2Fopenbox free the startup stacking order after using it --- 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)