Author: jilles
Date: Sun Aug  9 15:53:02 2015
New Revision: 286534
URL: https://svnweb.freebsd.org/changeset/base/286534

Log:
  MFC r284649: fts_children: preserve errno after running close/fchdir
  
  PR:           200942
  Submitted by: Conrad Meyer

Modified:
  stable/10/lib/libc/gen/fts.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libc/gen/fts.c
==============================================================================
--- stable/10/lib/libc/gen/fts.c        Sun Aug  9 15:51:56 2015        
(r286533)
+++ stable/10/lib/libc/gen/fts.c        Sun Aug  9 15:53:02 2015        
(r286534)
@@ -515,7 +515,7 @@ FTSENT *
 fts_children(FTS *sp, int instr)
 {
        FTSENT *p;
-       int fd;
+       int fd, rc, serrno;
 
        if (instr != 0 && instr != FTS_NAMEONLY) {
                errno = EINVAL;
@@ -571,11 +571,14 @@ fts_children(FTS *sp, int instr)
        if ((fd = _open(".", O_RDONLY | O_CLOEXEC, 0)) < 0)
                return (NULL);
        sp->fts_child = fts_build(sp, instr);
-       if (fchdir(fd)) {
-               (void)_close(fd);
-               return (NULL);
-       }
+       serrno = (sp->fts_child == NULL) ? errno : 0;
+       rc = fchdir(fd);
+       if (rc < 0 && serrno == 0)
+               serrno = errno;
        (void)_close(fd);
+       errno = serrno;
+       if (rc < 0)
+               return (NULL);
        return (sp->fts_child);
 }
 
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to