laforge has submitted this change. ( 
https://gerrit.osmocom.org/c/libosmocore/+/16746 )

Change subject: usb: Use OSMO_STRLCPY where appropriate
......................................................................

usb: Use OSMO_STRLCPY where appropriate

Change-Id: I6b2a90fd8f4b042a1e38dbf8e99414a94a290375
---
M src/usb/osmo_libusb.c
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Jenkins Builder: Verified
  laforge: Looks good to me, approved



diff --git a/src/usb/osmo_libusb.c b/src/usb/osmo_libusb.c
index 5b012b8..b10f5be 100644
--- a/src/usb/osmo_libusb.c
+++ b/src/usb/osmo_libusb.c
@@ -276,7 +276,7 @@
                                out[out_idx].vendor = dev_desc.idVendor;
                                out[out_idx].product = dev_desc.idProduct;
                                out[out_idx].addr = addr;
-                               strncpy(out[out_idx].path, path, 
sizeof(out[out_idx].path)-1);
+                               OSMO_STRLCPY_ARRAY(out[out_idx].path, path);
                                out[out_idx].path[sizeof(out[out_idx].path)-1] 
= '\0';
                                out[out_idx].configuration = 
conf_desc->bConfigurationValue;
                                out[out_idx].interface = 
if_desc->bInterfaceNumber;

--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/16746
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I6b2a90fd8f4b042a1e38dbf8e99414a94a290375
Gerrit-Change-Number: 16746
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <lafo...@osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <lafo...@osmocom.org>
Gerrit-MessageType: merged

Reply via email to