Free allocated password buffer when returning NULL. Fixes: CID 229894 (partially). --- src/evmctl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/evmctl.c b/src/evmctl.c index 04dc546..f15056b 100644 --- a/src/evmctl.c +++ b/src/evmctl.c @@ -1841,6 +1841,7 @@ static char *get_password(void) if (tcsetattr(fileno(stdin), TCSANOW, &tmp_flags) != 0) { perror("tcsetattr"); + free(password); return NULL; } @@ -1850,6 +1851,7 @@ static char *get_password(void) /* restore terminal */ if (tcsetattr(fileno(stdin), TCSANOW, &flags) != 0) { perror("tcsetattr"); + free(password); return NULL; } -- 2.11.0