svn commit: r316762 - stable/11/cddl/contrib/opensolaris/lib/libzfs/common
Pedro F. Giffuni
pfg at FreeBSD.org
Thu Apr 13 15:39:43 UTC 2017
Author: pfg
Date: Thu Apr 13 15:39:42 2017
New Revision: 316762
URL: https://svnweb.freebsd.org/changeset/base/316762
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/11/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_fru.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_fru.c
==============================================================================
--- stable/11/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_fru.c Thu Apr 13 15:03:03 2017 (r316761)
+++ stable/11/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_fru.c Thu Apr 13 15:39:42 2017 (r316762)
@@ -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