darwin: Replace bzero() with memset()
authorVianney le Clément de Saint-Marcq <vianney.leclement@essensium.com>
Mon, 11 Apr 2016 10:33:20 +0000 (12:33 +0200)
committerLudovic Rousseau <ludovic.rousseau@free.fr>
Wed, 4 Jan 2017 16:41:10 +0000 (17:41 +0100)
The bzero() function is a deprecated BSD function that can be replaced
by the standard C90 memset() function.

From memset(4) manpage:
  The memset() function conforms to ISO/IEC 9899:1990 (``ISO C90'').

From bzero(3) manpage:
  bzero() was deprecated in IEEE Std 1003.1-2001 (``POSIX.1'') and removed
  in IEEE Std 1003.1-2008 (``POSIX.1'').

When compiling for POSIX 2008, the bzero() function is undefined on the
OS X platform.

libusb/os/darwin_usb.c
libusb/version_nano.h

index c2285cd..b0219d1 100644 (file)
@@ -1742,7 +1742,7 @@ static int submit_control_transfer(struct usbi_transfer *itransfer) {
 
   IOReturn               kresult;
 
-  bzero(&tpriv->req, sizeof(tpriv->req));
+  memset(&tpriv->req, 0, sizeof(tpriv->req));
 
   /* IOUSBDeviceInterface expects the request in cpu endianness */
   tpriv->req.bmRequestType     = setup->bmRequestType;
index af4d98f..1a7433c 100644 (file)
@@ -1 +1 @@
-#define LIBUSB_NANO 11161
+#define LIBUSB_NANO 11162