diff options
author | Richard Levitte <levitte@openssl.org> | 2001-06-07 01:12:41 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2001-06-07 01:12:41 +0200 |
commit | f420de027f83612d31fd98f32a4f57a566b54aba (patch) | |
tree | 5c4eea8e36d85e48c35af75ca30d39694da15d90 | |
parent | OAEP fix (diff) | |
download | openssl-f420de027f83612d31fd98f32a4f57a566b54aba.tar.xz openssl-f420de027f83612d31fd98f32a4f57a566b54aba.zip |
Don't forget to initialise.
-rw-r--r-- | crypto/ui/ui_lib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/ui/ui_lib.c b/crypto/ui/ui_lib.c index f55a79c740..2cbed03717 100644 --- a/crypto/ui/ui_lib.c +++ b/crypto/ui/ui_lib.c @@ -99,6 +99,8 @@ UI *UI_new_method(const UI_METHOD *method) ret->meth=method; ret->strings=NULL; + ret->user_data=NULL; + ret->ex_data=NULL; return ret; } |