mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
I'm still getting crashes without this line
This commit is contained in:
parent
3282163f64
commit
d1e031025d
@ -136,6 +136,9 @@ void ipc_update_workspaces() {
|
|||||||
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);
|
||||||
json_object *num, *name, *visible, *focused, *out, *urgent;
|
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, "num", &num);
|
||||||
json_object_object_get_ex(ws_json, "name", &name);
|
json_object_object_get_ex(ws_json, "name", &name);
|
||||||
json_object_object_get_ex(ws_json, "visible", &visible);
|
json_object_object_get_ex(ws_json, "visible", &visible);
|
||||||
|
Loading…
Reference in New Issue
Block a user