svn commit: r320581 - stable/11/lib/libc/rpc

Xin LI delphij at FreeBSD.org
Mon Jul 3 02:11:16 UTC 2017


Author: delphij
Date: Mon Jul  3 02:11:14 2017
New Revision: 320581
URL: https://svnweb.freebsd.org/changeset/base/320581

Log:
  MFC r320494: Fix double free by reverting r300385 and r300624 which was
  false positive reported by cppcheck.
  
  releng/11.1 candidate.

Modified:
  stable/11/lib/libc/rpc/getnetconfig.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/lib/libc/rpc/getnetconfig.c
==============================================================================
--- stable/11/lib/libc/rpc/getnetconfig.c	Mon Jul  3 02:01:16 2017	(r320580)
+++ stable/11/lib/libc/rpc/getnetconfig.c	Mon Jul  3 02:11:14 2017	(r320581)
@@ -692,7 +692,7 @@ static struct netconfig *
 dup_ncp(struct netconfig *ncp)
 {
     struct netconfig	*p;
-    char	*tmp, *tmp2;
+    char	*tmp;
     u_int	i;
 
     if ((tmp=malloc(MAXNETCONFIGLINE)) == NULL)
@@ -701,7 +701,6 @@ dup_ncp(struct netconfig *ncp)
 	free(tmp);
 	return(NULL);
     }
-    tmp2 = tmp;
     /*
      * First we dup all the data from matched netconfig buffer.  Then we
      * adjust some of the member pointer to a pre-allocated buffer where
@@ -723,7 +722,6 @@ dup_ncp(struct netconfig *ncp)
     if (p->nc_lookups == NULL) {
 	free(p->nc_netid);
 	free(p);
-	free(tmp2);
 	return(NULL);
     }
     for (i=0; i < p->nc_nlookups; i++) {


More information about the svn-src-all mailing list