diff options
| author | Xin LI <delphij@FreeBSD.org> | 2017-06-30 07:04:10 +0000 |
|---|---|---|
| committer | Xin LI <delphij@FreeBSD.org> | 2017-06-30 07:04:10 +0000 |
| commit | 94c5b2d12475ef7b133a13926734a97196b98367 (patch) | |
| tree | 6538ff2638db9d5bff7ec1aea88b272d5d8bd673 /lib/libc/rpc | |
| parent | 86ce2be65a748ad978eb8d58bfa4a04b1aee0d6d (diff) | |
Notes
Diffstat (limited to 'lib/libc/rpc')
| -rw-r--r-- | lib/libc/rpc/getnetconfig.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libc/rpc/getnetconfig.c b/lib/libc/rpc/getnetconfig.c index 40e5a1bad7f0..84efd5cd2a46 100644 --- a/lib/libc/rpc/getnetconfig.c +++ b/lib/libc/rpc/getnetconfig.c @@ -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++) { |
