mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
fix major bug created from copying mkdtemp logic
This commit is contained in:
parent
095a5ae6f2
commit
2e6239dd06
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue