Merge branch 'rs/mingw-tighten-mkstemp'
mkstemp() emulation on Windows has been improved. * rs/mingw-tighten-mkstemp: mingw: avoid mktemp() in mkstemp() implementation
This commit is contained in:
commit
eacae022bb
@ -1059,10 +1059,7 @@ char *mingw_mktemp(char *template)
|
||||
|
||||
int mkstemp(char *template)
|
||||
{
|
||||
char *filename = mktemp(template);
|
||||
if (!filename)
|
||||
return -1;
|
||||
return open(filename, O_RDWR | O_CREAT, 0600);
|
||||
return git_mkstemp_mode(template, 0600);
|
||||
}
|
||||
|
||||
int gettimeofday(struct timeval *tv, void *tz)
|
||||
|
Loading…
Reference in New Issue
Block a user