mirror of https://github.com/encounter/SDL.git
hidapi: Zero out new hid_device_info structs
This commit is contained in:
parent
bf9bf602e7
commit
0e9560aea2
|
@ -547,7 +547,7 @@ struct hid_device_info HID_API_EXPORT *hid_enumerate(unsigned short vendor_id,
|
||||||
struct hid_device_info *tmp;
|
struct hid_device_info *tmp;
|
||||||
|
|
||||||
/* VID/PID match. Create the record. */
|
/* VID/PID match. Create the record. */
|
||||||
tmp = (struct hid_device_info *)malloc(sizeof(struct hid_device_info));
|
tmp = (struct hid_device_info *)calloc(1, sizeof(struct hid_device_info));
|
||||||
if (cur_dev) {
|
if (cur_dev) {
|
||||||
cur_dev->next = tmp;
|
cur_dev->next = tmp;
|
||||||
}
|
}
|
||||||
|
|
|
@ -472,7 +472,7 @@ struct hid_device_info HID_API_EXPORT *hid_enumerate(unsigned short vendor_id,
|
||||||
size_t len;
|
size_t len;
|
||||||
|
|
||||||
/* VID/PID match. Create the record. */
|
/* VID/PID match. Create the record. */
|
||||||
tmp = (struct hid_device_info *)malloc(sizeof(struct hid_device_info));
|
tmp = (struct hid_device_info *)calloc(1, sizeof(struct hid_device_info));
|
||||||
if (cur_dev) {
|
if (cur_dev) {
|
||||||
cur_dev->next = tmp;
|
cur_dev->next = tmp;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue