diff options
author | mikeh <mikeh@FreeBSD.org> | 2001-06-19 03:48:26 +0000 |
---|---|---|
committer | mikeh <mikeh@FreeBSD.org> | 2001-06-19 03:48:26 +0000 |
commit | 1cdd9402ff0dd8da8582fe86d0089fda671679e2 (patch) | |
tree | 37444c939d549abb0a706a4321b2042c1ccab5b6 /usr.bin/rusers | |
parent | ab585f780e066a0ba48c1830b86f2168dc0c4035 (diff) | |
download | FreeBSD-src-1cdd9402ff0dd8da8582fe86d0089fda671679e2.zip FreeBSD-src-1cdd9402ff0dd8da8582fe86d0089fda671679e2.tar.gz |
Call clnt_destroy() to prevent exhausting resources.
PR: bin/14255
Reviewed by: Kenji Tomita <tommy@ti.com>
MFC after: 2 weeks
Diffstat (limited to 'usr.bin/rusers')
-rw-r--r-- | usr.bin/rusers/rusers.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/rusers/rusers.c b/usr.bin/rusers/rusers.c index 0605a61..2322c98 100644 --- a/usr.bin/rusers/rusers.c +++ b/usr.bin/rusers/rusers.c @@ -191,6 +191,7 @@ onehost(char *host) errx(1, "%s", clnt_sperror(rusers_clnt, "")); addr.sin_addr.s_addr = *(int *)hp->h_addr; rusers_reply((caddr_t)&up, &addr); + clnt_destroy(rusers_clnt); } void |