svn commit: r311633 - stable/11/contrib/netbsd-tests/lib/libc/c063
Ngie Cooper
ngie at FreeBSD.org
Sat Jan 7 09:44:06 UTC 2017
Author: ngie
Date: Sat Jan 7 09:44:05 2017
New Revision: 311633
URL: https://svnweb.freebsd.org/changeset/base/311633
Log:
MFC r311247:
mkfifoat_fd: close dfd after use to avoid leaking it
CID: 978286
Modified:
stable/11/contrib/netbsd-tests/lib/libc/c063/t_mkfifoat.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/contrib/netbsd-tests/lib/libc/c063/t_mkfifoat.c
==============================================================================
--- stable/11/contrib/netbsd-tests/lib/libc/c063/t_mkfifoat.c Sat Jan 7 09:44:02 2017 (r311632)
+++ stable/11/contrib/netbsd-tests/lib/libc/c063/t_mkfifoat.c Sat Jan 7 09:44:05 2017 (r311633)
@@ -63,6 +63,9 @@ ATF_TC_BODY(mkfifoat_fd, tc)
ATF_REQUIRE((fd = mkfifoat(dfd, BASEFIFO, mode)) != -1);
ATF_REQUIRE(close(fd) == 0);
ATF_REQUIRE(access(FIFO, F_OK) == 0);
+#ifdef __FreeBSD__
+ (void)close(dfd);
+#endif
}
ATF_TC(mkfifoat_fdcwd);
More information about the svn-src-stable-11
mailing list