The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

u/json: Fix a -Wmaybe-uninitialized on GCC 10.1.0.

+1 -2
+1 -2
src/xrt/auxiliary/util/u_json.c
··· 163 163 return false; 164 164 } 165 165 166 - float array[3]; 167 - 168 166 if (cJSON_GetArraySize(json) != 3) { 169 167 return false; 170 168 } 171 169 170 + float array[3] = {0, 0, 0}; 172 171 const cJSON *item = NULL; 173 172 size_t i = 0; 174 173 cJSON_ArrayForEach(item, json)