From a116eafaa45f889457e2371e3d9ca614b4a2847d Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 18 Dec 2015 09:03:45 -0500 Subject: [PATCH] Fix possible segfault in swaybar --- swaybar/main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/swaybar/main.c b/swaybar/main.c index 4b9ba49d4..c0a24bcf4 100644 --- a/swaybar/main.c +++ b/swaybar/main.c @@ -135,6 +135,10 @@ void ipc_update_workspaces() { int i; for (i = 0; i < json_object_array_length(results); ++i) { json_object *ws_json = json_object_array_get_idx(results, i); + if (!ws_json) { + // wat + continue; + } json_object *num, *name, *visible, *focused, *out, *urgent; json_object_object_get_ex(ws_json, "num", &num); json_object_object_get_ex(ws_json, "name", &name);