From 859f2fea0c3dc4784990a14b033f89a7e7a1be61 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 18 Dec 2015 19:45:16 -0500 Subject: Just bail if ws_json is fucked up --- swaybar/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'swaybar/main.c') diff --git a/swaybar/main.c b/swaybar/main.c index fc44d3af..cd0bf0d3 100644 --- a/swaybar/main.c +++ b/swaybar/main.c @@ -137,7 +137,7 @@ void ipc_update_workspaces() { json_object *ws_json = json_object_array_get_idx(results, i); json_object *num, *name, *visible, *focused, *out, *urgent; if (!ws_json) { - continue; + return; } json_object_object_get_ex(ws_json, "num", &num); json_object_object_get_ex(ws_json, "name", &name); -- cgit v1.2.3-54-g00ecf