From ddad41f423db14f89f765fc134d45d1ea8a60caf Mon Sep 17 00:00:00 2001 From: Rouven Czerwinski Date: Sun, 16 Jun 2019 17:36:00 +0200 Subject: Fix sway crashes for scratchpad layouts Currently container_replace removes the container from the scratchpad and re-adds it afterwards. For the split commands this results in the container being send to the scratchpad, which results in a NULL segfault if the same container should be shown. Pass an optional workspace to root_scratchpad_add_container, if the workspace is passed the window will continue to show on the workspace. If NULL is passed it is sent to the scratchpad. This was an issue if no other window except the scratchpad container was on the workspace. Fixes #4240 --- sway/commands/move.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sway/commands/move.c') diff --git a/sway/commands/move.c b/sway/commands/move.c index 9c6e69ec..6fd66f28 100644 --- a/sway/commands/move.c +++ b/sway/commands/move.c @@ -856,7 +856,7 @@ static struct cmd_results *cmd_move_to_scratchpad(void) { } if (!con->scratchpad) { - root_scratchpad_add_container(con); + root_scratchpad_add_container(con, NULL); } else if (con->workspace) { root_scratchpad_hide(con); } -- cgit v1.2.3-54-g00ecf