fix password not being cleared when blank_password is set

This commit is contained in:
nullgemm
2020-02-03 08:34:42 +01:00
parent 33934f3ab2
commit 825544f7e2
4 changed files with 15 additions and 1 deletions

View File

@@ -255,6 +255,11 @@ int main(int argc, char** argv)
buf.info_line = dgn_output_log();
}
if (config.blank_password)
{
input_text_clear(&password);
}
dgn_reset();
}
else