sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 9e96ce4a46cb891747f49ac94cd613c0296fc898
parent 8dadfd42dff1531f793ad2f2c237a05c05f6d180
Author: meak <meak@fastmail.com>
Date:   Thu, 11 Oct 2018 17:17:01 +0200

fix: cmd_sticky crash sway with empty container

Diffstat:
Msway/commands/sticky.c | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/sway/commands/sticky.c b/sway/commands/sticky.c @@ -16,6 +16,11 @@ struct cmd_results *cmd_sticky(int argc, char **argv) { return error; } struct sway_container *container = config->handler_context.container; + + if (container == NULL) { + return cmd_results_new(CMD_FAILURE, "sticky", "No current container"); + }; + if (!container_is_floating(container)) { return cmd_results_new(CMD_FAILURE, "sticky", "Can't set sticky on a tiled container");