From: Richard Levitte Date: Sun, 13 May 2001 05:34:39 +0000 (+0000) Subject: Define `ok' and better error detection. X-Git-Tag: OpenSSL_0_9_6c~182^2~175 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=0a647c2b8b52479867c15584d6e72cbbfcc4459d;ds=inline Define `ok' and better error detection. --- diff --git a/crypto/ui/ui_compat.c b/crypto/ui/ui_compat.c index fd8e004c10..6938d72d49 100644 --- a/crypto/ui/ui_compat.c +++ b/crypto/ui/ui_compat.c @@ -98,13 +98,19 @@ int des_read_pw_string(char *buf,int length,const char *prompt,int verify) int des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) { + int ok = 0; UI *ui; ui = UI_new(); - UI_add_input_string(ui,prompt,0,buf,0,BUFSIZ-1); - if (verify) - UI_add_verify_string(ui,prompt,0,buff,0,BUFSIZ-1,buf); - ok=UI_process(ui); - UI_free(ui); + if (ui) + { + ok = UI_add_input_string(ui,prompt,0,buf,0,BUFSIZ-1); + if (ok == 0 && verify) + ok = UI_add_verify_string(ui,prompt,0,buff,0,BUFSIZ-1, + buf); + if (ok == 0) + ok=UI_process(ui); + UI_free(ui); + } return(ok); }