svn commit: r316763 - stable/10/cddl/contrib/opensolaris/lib/libzfs/common

Pedro F. Giffuni pfg at FreeBSD.org
Thu Apr 13 15:40:58 UTC 2017


Author: pfg
Date: Thu Apr 13 15:40:57 2017
New Revision: 316763
URL: https://svnweb.freebsd.org/changeset/base/316763

Log:
  MFC r316695, MFV r316693:
  8046 Let calloc() do the multiplication in libzfs_fru_refresh
  
  https://github.com/illumos/illumos-gate/commit/5697e03e6e3e2697f56ae341c7c8ce79680d6a2e
  
  https://www.illumos.org/issues/8046
  
  Reviewed by: Matthew Ahrens <mahrens at delphix.com>
  Reviewed by: Paul Dagnelie <pcd at delphix.com>
  Approved by: Robert Mustacchi <rm at joyent.com>
  Author:	Pedro Giffuni <pfg at freebsd.org>

Modified:
  stable/10/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_fru.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_fru.c
==============================================================================
--- stable/10/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_fru.c	Thu Apr 13 15:39:42 2017	(r316762)
+++ stable/10/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_fru.c	Thu Apr 13 15:40:57 2017	(r316763)
@@ -282,7 +282,7 @@ libzfs_fru_refresh(libzfs_handle_t *hdl)
 
 	if (hdl->libzfs_fru_hash == NULL &&
 	    (hdl->libzfs_fru_hash =
-	    calloc(ZFS_FRU_HASH_SIZE * sizeof (void *), 1)) == NULL)
+	    calloc(ZFS_FRU_HASH_SIZE, sizeof (void *))) == NULL)
 		return;
 
 	/*


More information about the svn-src-all mailing list