From 17014c34e2f3568af06b4fc9323256d2b7aa8947 Mon Sep 17 00:00:00 2001 From: Ryan Dwyer Date: Wed, 17 Oct 2018 19:55:00 +1000 Subject: Fix crashes when running certain commands on an empty workspace This fixes crashes when running the border, mark, unmark and title_format commands on an empty workspace. --- sway/commands/title_format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sway/commands/title_format.c') diff --git a/sway/commands/title_format.c b/sway/commands/title_format.c index c9ffe8fa..ef1c8935 100644 --- a/sway/commands/title_format.c +++ b/sway/commands/title_format.c @@ -12,7 +12,7 @@ struct cmd_results *cmd_title_format(int argc, char **argv) { return error; } struct sway_container *container = config->handler_context.container; - if (!container->view) { + if (!container || !container->view) { return cmd_results_new(CMD_INVALID, "title_format", "Only views can have a title_format"); } -- cgit v1.2.3