Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 May 2012 09:09:15 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r235466 - stable/9/lib/libc/rpc
Message-ID:  <201205150909.q4F99FaH077497@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Tue May 15 09:09:14 2012
New Revision: 235466
URL: http://svn.freebsd.org/changeset/base/235466

Log:
  MFC r235143:
  Plug a leak.

Modified:
  stable/9/lib/libc/rpc/auth_unix.c
Directory Properties:
  stable/9/lib/libc/   (props changed)

Modified: stable/9/lib/libc/rpc/auth_unix.c
==============================================================================
--- stable/9/lib/libc/rpc/auth_unix.c	Tue May 15 09:01:00 2012	(r235465)
+++ stable/9/lib/libc/rpc/auth_unix.c	Tue May 15 09:09:14 2012	(r235466)
@@ -185,6 +185,7 @@ authunix_create(machname, uid, gid, len,
 AUTH *
 authunix_create_default()
 {
+	AUTH *auth;
 	int ngids;
 	long ngids_max;
 	char machname[MAXHOSTNAMELEN + 1];
@@ -207,8 +208,10 @@ authunix_create_default()
 	if (ngids > NGRPS)
 		ngids = NGRPS;
 	/* XXX: interface problem; those should all have been unsigned */
-	return (authunix_create(machname, (int)uid, (int)gid, ngids,
-	    (int *)gids));
+	auth = authunix_create(machname, (int)uid, (int)gid, ngids,
+	    (int *)gids);
+	free(gids);
+	return (auth);
 }
 
 /*



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205150909.q4F99FaH077497>