The open source OpenXR runtime
0
fork

Configure Feed

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

ipc: fixes warnings introduce in !2249

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2140>

+1 -2
-1
src/xrt/ipc/server/ipc_server_handler.c
··· 198 198 return xret; 199 199 } 200 200 201 - struct xrt_space *xs = NULL; 202 201 struct xrt_space_overseer *xso = ics->server->xso; 203 202 struct xrt_space **xs_ptr = (struct xrt_space **)&ics->xspcs[id]; 204 203
+1 -1
src/xrt/ipc/server/ipc_server_per_client_thread.c
··· 67 67 xrt_space_reference((struct xrt_space **)&ics->xspcs[i], NULL); 68 68 } 69 69 70 - if (ics->local_space_overseer_index < IPC_MAX_CLIENT_SPACES && ics->local_space_overseer_index >= 0) { 70 + if (ics->local_space_overseer_index < IPC_MAX_CLIENT_SPACES) { 71 71 xrt_space_reference((struct xrt_space **)&ics->server->xso->localspace[ics->local_space_overseer_index], 72 72 NULL); 73 73 }