diff options
-rw-r--r-- | swaybar/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/swaybar/main.c b/swaybar/main.c index d992b154..0a25d0f5 100644 --- a/swaybar/main.c +++ b/swaybar/main.c @@ -110,6 +110,10 @@ void ipc_update_workspaces() { uint32_t len = 0; char *res = ipc_single_command(socketfd, IPC_GET_WORKSPACES, NULL, &len); json_object *results = json_tokener_parse(res); + if (!results) { + free(res); + return; + } int i; for (i = 0; i < json_object_array_length(results); ++i) { |