X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Ftemp%2Fmkostemps.c;h=ef24eeae2ce9263ec4f328ebf34ef346da297ea9;hb=59b64ff686cef2a87e9552658b2c8d2531f87176;hp=8cc01e37e63a308a9d83f204b425efcffc4b0672;hpb=8872e4e481d8702e68641605bba279796646773d;p=musl diff --git a/src/temp/mkostemps.c b/src/temp/mkostemps.c index 8cc01e37..ef24eeae 100644 --- a/src/temp/mkostemps.c +++ b/src/temp/mkostemps.c @@ -1,11 +1,9 @@ #define _BSD_SOURCE +#include #include #include #include #include -#include "libc.h" - -char *__randname(char *); int __mkostemps(char *template, int len, int flags) { @@ -15,13 +13,15 @@ int __mkostemps(char *template, int len, int flags) return -1; } + flags -= flags & O_ACCMODE; int fd, retries = 100; - while (retries--) { + do { __randname(template+l-len-6); if ((fd = open(template, flags | O_RDWR | O_CREAT | O_EXCL, 0600))>=0) return fd; - if (errno != EEXIST) return -1; - } + } while (--retries && errno == EEXIST); + + memcpy(template+l-len-6, "XXXXXX", 6); return -1; }