зеркало из https://github.com/microsoft/git.git
Merge pull request #3492 from dscho/ns/batched-fsync
Switch to batched fsync by default
This commit is contained in:
Коммит
d5383e04d6
|
@ -1304,8 +1304,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':') {
|
||||
|
|
Загрузка…
Ссылка в новой задаче