Browse Source

avoid fd leak if opendir is cancelled when calloc has failed

rs-1.0
Rich Felker 15 years ago
parent
commit
75a0be1f65
  1. 3
      src/dirent/opendir.c

3
src/dirent/opendir.c

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

Loading…
Cancel
Save