提交 cdf0f53f 编写于 作者: R Rich Felker

fix fd leak on races and cancellation in ctermid

上级 0716b10a
......@@ -4,6 +4,7 @@
#include <fcntl.h>
#include <unistd.h>
#include <limits.h>
#include "syscall.h"
char *ctermid(char *s)
{
......@@ -13,11 +14,11 @@ char *ctermid(char *s)
if (!s2) s2 = malloc(L_ctermid);
s = s2;
}
fd = open("/dev/tty", O_WRONLY | O_NOCTTY);
fd = open("/dev/tty", O_WRONLY | O_NOCTTY | O_CLOEXEC);
if (fd < 0)
return strcpy(s, "");
if (ttyname_r(fd, s, L_ctermid))
strcpy(s, "");
close(fd);
__syscall(SYS_close, fd);
return s;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册