projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
095a5ae
)
fix major bug created from copying mkdtemp logic
author
Rich Felker
<dalias@aerifal.cx>
Sat, 19 Feb 2011 14:34:28 +0000
(09:34 -0500)
committer
Rich Felker
<dalias@aerifal.cx>
Sat, 19 Feb 2011 14:34:28 +0000
(09:34 -0500)
src/temp/mkstemp.c
patch
|
blob
|
history
diff --git
a/src/temp/mkstemp.c
b/src/temp/mkstemp.c
index 2ab3020b3e3c2768a7c4abbd2f64415999e53807..20019ed93eeb81825900dd3e9aeba0764176a1f3 100644
(file)
--- a/
src/temp/mkstemp.c
+++ b/
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;