diff options
author | Nils Larsch <nils@openssl.org> | 2005-07-26 23:10:34 +0200 |
---|---|---|
committer | Nils Larsch <nils@openssl.org> | 2005-07-26 23:10:34 +0200 |
commit | c755c5fd8ba5771691451e9d1b163544fdadb7ec (patch) | |
tree | e9ba80b2ad6965f3803a0d2273b8797258023586 /crypto/ui | |
parent | Handle case where it==NULL (diff) | |
download | openssl-c755c5fd8ba5771691451e9d1b163544fdadb7ec.tar.xz openssl-c755c5fd8ba5771691451e9d1b163544fdadb7ec.zip |
improved error checking and some fixes
PR: 1170
Submitted by: Yair Elharrar
Reviewed and edited by: Nils Larsch
Diffstat (limited to 'crypto/ui')
-rw-r--r-- | crypto/ui/ui_lib.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/ui/ui_lib.c b/crypto/ui/ui_lib.c index 1a8f3ce113..7ab249c3be 100644 --- a/crypto/ui/ui_lib.c +++ b/crypto/ui/ui_lib.c @@ -620,8 +620,10 @@ UI_METHOD *UI_create_method(char *name) UI_METHOD *ui_method = (UI_METHOD *)OPENSSL_malloc(sizeof(UI_METHOD)); if (ui_method) + { memset(ui_method, 0, sizeof(*ui_method)); - ui_method->name = BUF_strdup(name); + ui_method->name = BUF_strdup(name); + } return ui_method; } |