Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Jan 2017 04:29:53 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r311247 - head/contrib/netbsd-tests/lib/libc/c063
Message-ID:  <201701040429.v044TrX0080696@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701040429.v044TrX0080696>