提交 2e6239dd 编写于 作者: R Rich Felker

fix major bug created from copying mkdtemp logic

上级 095a5ae6
......@@ -13,7 +13,7 @@ int mkstemp(char *template)
{
int fd, retries = 100;
while (retries--) {
if (!__mktemp(template)) return 0;
if (!__mktemp(template)) return -1;
if ((fd = open(template, O_RDWR | O_CREAT | O_EXCL, 0600))>=0)
return fd;
if (errno != EEXIST) return -1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册