Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 7 Jan 2017 09:44:03 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r311632 - stable/10/contrib/netbsd-tests/lib/libc/c063
Message-ID:  <201701070944.v079i380008254@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Sat Jan  7 09:44:02 2017
New Revision: 311632
URL: https://svnweb.freebsd.org/changeset/base/311632

Log:
  MFC r311247:
  
  mkfifoat_fd: close dfd after use to avoid leaking it
  
  CID:		978286

Modified:
  stable/10/contrib/netbsd-tests/lib/libc/c063/t_mkfifoat.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/contrib/netbsd-tests/lib/libc/c063/t_mkfifoat.c
==============================================================================
--- stable/10/contrib/netbsd-tests/lib/libc/c063/t_mkfifoat.c	Sat Jan  7 09:42:51 2017	(r311631)
+++ stable/10/contrib/netbsd-tests/lib/libc/c063/t_mkfifoat.c	Sat Jan  7 09:44:02 2017	(r311632)
@@ -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?201701070944.v079i380008254>