mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
Add missing return value check in pkcs8 app
Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
e69f2a223c
commit
bcc31778e3
@ -341,7 +341,10 @@ int pkcs8_main(int argc, char **argv)
|
||||
else if (1) {
|
||||
#ifndef OPENSSL_NO_UI
|
||||
p8pass = pass;
|
||||
EVP_read_pw_string(pass, sizeof pass, "Enter Password:", 0);
|
||||
if (EVP_read_pw_string(pass, sizeof pass, "Enter Password:", 0)) {
|
||||
BIO_printf(bio_err, "Can't read Password\n");
|
||||
goto end;
|
||||
}
|
||||
} else {
|
||||
#endif
|
||||
BIO_printf(bio_err, "Password required\n");
|
||||
|
Loading…
x
Reference in New Issue
Block a user