mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 19:37:48 +03:00
fix "new.key: Is a directory" and a memleak when generating a keypair
Test: minisign -G -p new.pub -s new.key Expected: new.pub and new.key appears in CWD Actual: error "new.key: Is a directory" and no keys
This commit is contained in:
parent
c4cca6ef89
commit
5e81e5a3c6
1 changed files with 6 additions and 2 deletions
|
@ -206,7 +206,11 @@ basedir_create_useronly(const char *file)
|
|||
|
||||
dir = xstrdup(file);
|
||||
basename = file_basename(dir);
|
||||
if (basename != dir) {
|
||||
if (basename == dir) {
|
||||
// this is a plain file path relative to CWD
|
||||
free(dir);
|
||||
return 0;
|
||||
} else {
|
||||
dir[basename - dir - 1] = 0;
|
||||
}
|
||||
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__))
|
||||
|
@ -217,8 +221,8 @@ basedir_create_useronly(const char *file)
|
|||
if (*dir == 0 || _mkdir(dir) == 0 || errno == EEXIST) {
|
||||
ret = 0;
|
||||
}
|
||||
free(dir);
|
||||
#endif
|
||||
free(dir);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue