svn commit: r262570 - vendor/illumos/dist/lib/libzfs/common

Xin LI delphij at FreeBSD.org
Thu Feb 27 20:00:27 UTC 2014


Author: delphij
Date: Thu Feb 27 20:00:26 2014
New Revision: 262570
URL: http://svnweb.freebsd.org/changeset/base/262570

Log:
  4626 libzfs memleak in zpool_in_use()
  
  illumos/illumos-gate at fb13f48f1d9593453b94cd1c7277553b56f493c8

Modified:
  vendor/illumos/dist/lib/libzfs/common/libzfs_import.c

Modified: vendor/illumos/dist/lib/libzfs/common/libzfs_import.c
==============================================================================
--- vendor/illumos/dist/lib/libzfs/common/libzfs_import.c	Thu Feb 27 19:39:44 2014	(r262569)
+++ vendor/illumos/dist/lib/libzfs/common/libzfs_import.c	Thu Feb 27 20:00:26 2014	(r262570)
@@ -20,8 +20,8 @@
  */
 /*
  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
- * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
  * Copyright (c) 2012 by Delphix. All rights reserved.
+ * Copyright 2014 Nexenta Systems, Inc. All rights reserved.
  */
 
 /*
@@ -1568,9 +1568,16 @@ zpool_in_use(libzfs_handle_t *hdl, int f
 		 * its state to active.
 		 */
 		if (pool_active(hdl, name, guid, &isactive) == 0 && isactive &&
-		    (zhp = zpool_open_canfail(hdl, name)) != NULL &&
-		    zpool_get_prop_int(zhp, ZPOOL_PROP_READONLY, NULL))
-			stateval = POOL_STATE_ACTIVE;
+		    (zhp = zpool_open_canfail(hdl, name)) != NULL) {
+			if (zpool_get_prop_int(zhp, ZPOOL_PROP_READONLY, NULL))
+				stateval = POOL_STATE_ACTIVE;
+
+			/*
+			 * All we needed the zpool handle for is the
+			 * readonly prop check.
+			 */
+			zpool_close(zhp);
+		}
 
 		ret = B_TRUE;
 		break;


More information about the svn-src-all mailing list