mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
Fix use-after-free when closing fullscreen views
This commit is contained in:
parent
cf14f37ee2
commit
d409620a55
@ -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?
|
||||
|
Loading…
Reference in New Issue
Block a user