svn commit: r278039 - head/lib/libc/rpc

Pedro F. Giffuni pfg at FreeBSD.org
Sun Feb 1 23:19:07 UTC 2015


Author: pfg
Date: Sun Feb  1 23:19:06 2015
New Revision: 278039
URL: https://svnweb.freebsd.org/changeset/base/278039

Log:
  Resource leak
  
  CID:	1016703
  Reviewed by:	alfred

Modified:
  head/lib/libc/rpc/crypt_client.c

Modified: head/lib/libc/rpc/crypt_client.c
==============================================================================
--- head/lib/libc/rpc/crypt_client.c	Sun Feb  1 22:50:33 2015	(r278038)
+++ head/lib/libc/rpc/crypt_client.c	Sun Feb  1 23:19:06 2015	(r278039)
@@ -64,6 +64,7 @@ _des_crypt_call(buf, len, dparms)
 	}
 	if (nconf == NULL) {
 		warnx("getnetconfig: %s", nc_sperror());
+		endnetconfig(localhandle);
 		return(DESERR_HWERROR);
 	}
 	clnt = clnt_tp_create(NULL, CRYPT_PROG, CRYPT_VERS, nconf);


More information about the svn-src-head mailing list