apply vmlock wait to __unmapself in pthread_exit
[musl] / src / temp / mkostemps.c
index d87d4b6..512b5f1 100644 (file)
@@ -10,18 +10,20 @@ char *__randname(char *);
 int __mkostemps(char *template, int len, int flags)
 {
        size_t l = strlen(template);
-       if (l<6 || len>l-6 || strncmp(template+l-len-6, "XXXXXX", 6)) {
+       if (l<6 || len>l-6 || memcmp(template+l-len-6, "XXXXXX", 6)) {
                errno = EINVAL;
                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;
 }