From eaf8d4a9d903595d2f3a388ed56fd20b34d9f80b Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Fri, 21 Oct 2016 20:17:19 +0000 Subject: Close some file descriptor leaks in pw MFC after: 4 weeks Sponsored by: Spectra Logic Corp Differential Revision: https://reviews.freebsd.org/D8245 --- pw/grupd.c | 3 +++ pw/pw_nis.c | 3 +++ pw/pwupd.c | 2 ++ 3 files changed, 8 insertions(+) (limited to 'pw') diff --git a/pw/grupd.c b/pw/grupd.c index 9cbe0cb..38d5e5b 100644 --- a/pw/grupd.c +++ b/pw/grupd.c @@ -34,6 +34,7 @@ static const char rcsid[] = #include #include #include +#include #include "pwupd.h" @@ -73,8 +74,10 @@ gr_update(struct group * grp, char const * group) } if (gr_copy(pfd, tfd, gr, old_gr) == -1) { gr_fini(); + close(tfd); err(1, "gr_copy()"); } + close(tfd); if (gr_mkdb() == -1) { gr_fini(); err(1, "gr_mkdb()"); diff --git a/pw/pw_nis.c b/pw/pw_nis.c index 6cc361b..35b26ea 100644 --- a/pw/pw_nis.c +++ b/pw/pw_nis.c @@ -34,6 +34,7 @@ static const char rcsid[] = #include #include #include +#include #include "pw.h" @@ -63,8 +64,10 @@ pw_nisupdate(const char * path, struct passwd * pwd, char const * user) } if (pw_copy(pfd, tfd, pw, old_pw) == -1) { pw_fini(); + close(tfd); err(1, "pw_copy()"); } + close(tfd); if (chmod(pw_tempname(), 0644) == -1) err(1, "chmod()"); if (rename(pw_tempname(), path) == -1) diff --git a/pw/pwupd.c b/pw/pwupd.c index ee23952..3bcb95f 100644 --- a/pw/pwupd.c +++ b/pw/pwupd.c @@ -111,8 +111,10 @@ pw_update(struct passwd * pwd, char const * user) } if (pw_copy(pfd, tfd, pw, old_pw) == -1) { pw_fini(); + close(tfd); err(1, "pw_copy()"); } + close(tfd); /* * in case of deletion of a user, the whole database * needs to be regenerated -- cgit v1.2.3-56-ge451