We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1e5be3 commit a627abcCopy full SHA for a627abc
external/hidapi/hid.c
@@ -20,6 +20,8 @@
20
https://github.com/libusb/hidapi .
21
********************************************************/
22
23
+#include "../../src/direwolf.h" // for strlcpy
24
+
25
#include <windows.h>
26
27
#ifndef _NTDEF_
@@ -465,7 +467,8 @@ struct hid_device_info HID_API_EXPORT * HID_API_CALL hid_enumerate(unsigned shor
465
467
if (str) {
466
468
len = strlen(str);
469
cur_dev->path = (char*) calloc(len+1, sizeof(char));
- strncpy(cur_dev->path, str, len+1);
470
+ //strncpy(cur_dev->path, str, len+1); // produces warning
471
+ strlcpy(cur_dev->path, str, len+1);
472
cur_dev->path[len] = '\0';
473
}
474
else
0 commit comments