sway

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

commit 56e9f31b2f5ad057c3f6809fafc73132647ae686
parent 138d10d5d62a25c2e00bd9051c835b9e78a36de4
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Fri, 28 Sep 2018 22:34:51 +1000

Check for NULL output in workspace_valid_on_output

Diffstat:
Msway/tree/workspace.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c @@ -128,7 +128,7 @@ void next_name_map(struct sway_container *ws, void *data) { static bool workspace_valid_on_output(const char *output_name, const char *ws_name) { struct workspace_config *wsc = workspace_find_config(ws_name); - return !wsc || strcmp(wsc->output, output_name) == 0; + return !wsc || !wsc->output || strcmp(wsc->output, output_name) == 0; } static void workspace_name_from_binding(const struct sway_binding * binding,