Fix use-after-free when closing fullscreen views

This commit is contained in:
Drew DeVault 2015-12-29 00:04:12 -05:00
parent cf14f37ee2
commit d409620a55
1 changed files with 5 additions and 1 deletions

View File

@ -252,8 +252,12 @@ static void handle_view_destroyed(wlc_handle handle) {
}
if (view) {
swayc_t *parent = destroy_view(view);
bool fullscreen = swayc_is_fullscreen(view);
remove_view_from_scratchpad(view);
swayc_t *parent = destroy_view(view);
if (fullscreen) {
parent->fullscreen = NULL;
}
arrange_windows(parent, -1, -1);
} else {
// Is it unmanaged?