diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-12-18 19:45:16 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-12-18 19:45:16 -0500 |
commit | 859f2fea0c3dc4784990a14b033f89a7e7a1be61 (patch) | |
tree | baf73961d172a833a1aeb276c27355d2f35d3e55 /swaybar | |
parent | de2f3b393ac3e539aa36c8ebb3e43b4ae589f6ea (diff) |
Just bail if ws_json is fucked up
Diffstat (limited to 'swaybar')
-rw-r--r-- | swaybar/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |