mirror of
https://github.com/git/git.git
synced 2025-03-24 03:49:57 +00:00
Merge branch 'jc/mkstemp-more-careful-error-reporting' into maint
* jc/mkstemp-more-careful-error-reporting: xmkstemp(): avoid showing truncated template more carefully
This commit is contained in:
commit
480640eafc
@ -229,7 +229,7 @@ int xmkstemp(char *template)
|
||||
int saved_errno = errno;
|
||||
const char *nonrelative_template;
|
||||
|
||||
if (!template[0])
|
||||
if (strlen(template) != strlen(origtemplate))
|
||||
template = origtemplate;
|
||||
|
||||
nonrelative_template = absolute_path(template);
|
||||
|
Loading…
x
Reference in New Issue
Block a user