提交 75a0be1f 编写于 作者: R Rich Felker

avoid fd leak if opendir is cancelled when calloc has failed

上级 df9e11bb
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册