diff options
author | truckman <truckman@FreeBSD.org> | 2016-06-01 17:20:36 +0000 |
---|---|---|
committer | truckman <truckman@FreeBSD.org> | 2016-06-01 17:20:36 +0000 |
commit | cc25dba923e2f1dcea656ddec203bcd20a6d75e0 (patch) | |
tree | 2d7cc7f61f4660aea84a58a6b7fe644d1b5e78ba | |
parent | 3b8f7769ef53354f14c7d2f559208e48bc5fa6fd (diff) | |
download | FreeBSD-src-cc25dba923e2f1dcea656ddec203bcd20a6d75e0.zip FreeBSD-src-cc25dba923e2f1dcea656ddec203bcd20a6d75e0.tar.gz |
MFC r300636
Delay calling yp_malloc_dnsent() until after some additional sanity
checks to avoid leaking memory on error returns.
Reported by: Coverity
CID: 1007416
-rw-r--r-- | usr.sbin/ypserv/yp_dnslookup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ypserv/yp_dnslookup.c b/usr.sbin/ypserv/yp_dnslookup.c index dfb5594..947df59 100644 --- a/usr.sbin/ypserv/yp_dnslookup.c +++ b/usr.sbin/ypserv/yp_dnslookup.c @@ -489,9 +489,6 @@ yp_async_lookup_addr(struct svc_req *rqstp, char *addr, int af) yp_find_dnsqent(svcudp_get_xid(rqstp->rq_xprt),BY_RPC_XID) != NULL) return(YP_TRUE); - if ((q = yp_malloc_dnsent()) == NULL) - return(YP_YPERR); - switch (af) { case AF_INET: if (inet_aton(addr, (struct in_addr *)uaddr) != 1) @@ -516,6 +513,9 @@ yp_async_lookup_addr(struct svc_req *rqstp, char *addr, int af) return(YP_YPERR); } + if ((q = yp_malloc_dnsent()) == NULL) + return(YP_YPERR); + if (debug) yp_error("DNS address is: %s", buf); |