浏览代码

fix major bug created from copying mkdtemp logic

Rich Felker 14 年之前
父节点
当前提交
2e6239dd06
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/temp/mkstemp.c

+ 1 - 1
src/temp/mkstemp.c

@@ -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;