free the startup stacking order after using it

This commit is contained in:
Dana Jansens 2003-03-25 00:44:27 +00:00
parent e731042dc9
commit d286702ed4

View file

@ -131,6 +131,9 @@ void client_manage_all()
c = g_hash_table_lookup(client_map, &w); c = g_hash_table_lookup(client_map, &w);
if (c) stacking_lower(c); 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) void client_manage(Window window)