commit d1e031025d8795e0cbaefc0a07c36ced49219eb9
parent 3282163f64291cfd63611110ab63e37051e80501
Author: Drew DeVault <sir@cmpwn.com>
Date: Fri, 18 Dec 2015 19:35:27 -0500
I'm still getting crashes without this line
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/swaybar/main.c b/swaybar/main.c
@@ -136,6 +136,9 @@ void ipc_update_workspaces() {
for (i = 0; i < json_object_array_length(results); ++i) {
json_object *ws_json = json_object_array_get_idx(results, i);
json_object *num, *name, *visible, *focused, *out, *urgent;
+ if (ws_json) {
+ continue;
+ }
json_object_object_get_ex(ws_json, "num", &num);
json_object_object_get_ex(ws_json, "name", &name);
json_object_object_get_ex(ws_json, "visible", &visible);