svn commit: r311247 - head/contrib/netbsd-tests/lib/libc/c063

Ngie Cooper ngie at FreeBSD.org
Wed Jan 4 04:29:54 UTC 2017


Author: ngie
Date: Wed Jan  4 04:29:53 2017
New Revision: 311247
URL: https://svnweb.freebsd.org/changeset/base/311247

Log:
  mkfifoat_fd: close dfd after use to avoid leaking it
  
  MFC after:	3 days
  Reported by:	Coverity
  CID:		978286

Modified:
  head/contrib/netbsd-tests/lib/libc/c063/t_mkfifoat.c

Modified: head/contrib/netbsd-tests/lib/libc/c063/t_mkfifoat.c
==============================================================================
--- head/contrib/netbsd-tests/lib/libc/c063/t_mkfifoat.c	Wed Jan  4 04:27:13 2017	(r311246)
+++ head/contrib/netbsd-tests/lib/libc/c063/t_mkfifoat.c	Wed Jan  4 04:29:53 2017	(r311247)
@@ -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-head mailing list