mirror of
https://github.com/swaywm/sway.git
synced 2024-11-17 21:49:16 +00:00
Fix possible segfault in swaybar
This commit is contained in:
parent
7558a274fa
commit
a116eafaa4
|
@ -135,6 +135,10 @@ void ipc_update_workspaces() {
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < json_object_array_length(results); ++i) {
|
for (i = 0; i < json_object_array_length(results); ++i) {
|
||||||
json_object *ws_json = json_object_array_get_idx(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 *num, *name, *visible, *focused, *out, *urgent;
|
||||||
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