avoid fd leak if opendir is cancelled when calloc has failed
authorRich Felker <dalias@aerifal.cx>
Tue, 19 Apr 2011 01:22:14 +0000 (21:22 -0400)
committerRich Felker <dalias@aerifal.cx>
Tue, 19 Apr 2011 01:22:14 +0000 (21:22 -0400)
src/dirent/opendir.c

index cefe6ce..928742c 100644 (file)
@@ -7,6 +7,7 @@
 #include <unistd.h>
 #include <limits.h>
 #include "__dirent.h"
+#include "syscall.h"
 
 DIR *opendir(const char *name)
 {
@@ -17,7 +18,7 @@ DIR *opendir(const char *name)
                return 0;
        fcntl(fd, F_SETFD, FD_CLOEXEC);
        if (!(dir = calloc(1, sizeof *dir))) {
-               close(fd);
+               __syscall(SYS_close, fd);
                return 0;
        }
        dir->fd = fd;