Index: head/usr.sbin/pw/grupd.c =================================================================== --- head/usr.sbin/pw/grupd.c +++ head/usr.sbin/pw/grupd.c @@ -34,6 +34,7 @@ #include #include #include +#include #include "pwupd.h" @@ -73,8 +74,10 @@ } 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()"); Index: head/usr.sbin/pw/pw_nis.c =================================================================== --- head/usr.sbin/pw/pw_nis.c +++ head/usr.sbin/pw/pw_nis.c @@ -34,6 +34,7 @@ #include #include #include +#include #include "pw.h" @@ -63,8 +64,10 @@ } 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) Index: head/usr.sbin/pw/pwupd.c =================================================================== --- head/usr.sbin/pw/pwupd.c +++ head/usr.sbin/pw/pwupd.c @@ -111,8 +111,10 @@ } 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