|
@@ -890,10 +890,8 @@ static SDL_HIDAPI_Device *HIDAPI_AddDevice(const struct SDL_hid_device_info *inf
|
|
return NULL;
|
|
return NULL;
|
|
}
|
|
}
|
|
device->magic = &SDL_HIDAPI_device_magic;
|
|
device->magic = &SDL_HIDAPI_device_magic;
|
|
- device->path = SDL_strdup(info->path);
|
|
|
|
- if (!device->path) {
|
|
|
|
- SDL_free(device);
|
|
|
|
- return NULL;
|
|
|
|
|
|
+ if (info->path) {
|
|
|
|
+ device->path = SDL_strdup(info->path);
|
|
}
|
|
}
|
|
device->seen = SDL_TRUE;
|
|
device->seen = SDL_TRUE;
|
|
device->vendor_id = info->vendor_id;
|
|
device->vendor_id = info->vendor_id;
|