Merge branch 'fn/maint-mkdtemp-compat'
* fn/maint-mkdtemp-compat: Fix gitmkdtemp: correct test for mktemp() return valuemaint
commit
f3604763ba
|
@ -2,7 +2,7 @@
|
|||
|
||||
char *gitmkdtemp(char *template)
|
||||
{
|
||||
if (!mktemp(template) || mkdir(template, 0700))
|
||||
if (!*mktemp(template) || mkdir(template, 0700))
|
||||
return NULL;
|
||||
return template;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue