The open source OpenXR runtime
0
fork

Configure Feed

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

d/psmv: Fix NULL check

+1 -1
+1 -1
src/xrt/drivers/psmv/psmv_driver.c
··· 1018 1018 } 1019 1019 1020 1020 struct xrt_device *xdev = psmv_device_create(xp, devices[index], tracker); 1021 - if (xdev != NULL) { 1021 + if (xdev == NULL) { 1022 1022 return -1; 1023 1023 } 1024 1024