Merge pull request #3492 from dscho/ns/batched-fsync

Switch to batched fsync by default
This commit is contained in:
Victoria Dye 2021-10-28 15:16:10 -04:00 коммит произвёл Johannes Schindelin
Родитель d57fd0245f 32253be9b6
Коммит 2e0ae3cd69
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -1301,8 +1301,11 @@ char *mingw_mktemp(char *template)
int offset = 0;
/* we need to return the path, thus no long paths here! */
if (xutftowcs_path(wtemplate, template) < 0)
if (xutftowcsn(wtemplate, template, MAX_PATH, -1) < 0) {
if (errno == ERANGE)
errno = ENAMETOOLONG;
return NULL;
}
if (is_dir_sep(template[0]) && !is_dir_sep(template[1]) &&
iswalpha(wtemplate[0]) && wtemplate[1] == L':') {