mirror of
https://github.com/NickHu/sway
synced 2024-12-27 21:58:11 +01:00
Just bail if ws_json is fucked up
This commit is contained in:
parent
de2f3b393a
commit
859f2fea0c
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ void ipc_update_workspaces() {
|
||||||
json_object *ws_json = json_object_array_get_idx(results, i);
|
json_object *ws_json = json_object_array_get_idx(results, i);
|
||||||
json_object *num, *name, *visible, *focused, *out, *urgent;
|
json_object *num, *name, *visible, *focused, *out, *urgent;
|
||||||
if (!ws_json) {
|
if (!ws_json) {
|
||||||
continue;
|
return;
|
||||||
}
|
}
|
||||||
json_object_object_get_ex(ws_json, "num", &num);
|
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, "name", &name);
|
||||||
|
|
Loading…
Reference in a new issue