summaryrefslogtreecommitdiffstats
path: root/crypto/ui
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2001-06-11 00:45:33 +0000
committerDr. Stephen Henson <steve@openssl.org>2001-06-11 00:45:33 +0000
commit76569fc66273109dab204f1aa26a83ab34d28f46 (patch)
tree09757bd0b4f122a2a24dc84da1dd8456e5c0dc48 /crypto/ui
parentf2a253e0ddd23c9a7601276f37b536fff53f3f8f (diff)
Initialize UI ex_data.
Diffstat (limited to 'crypto/ui')
-rw-r--r--crypto/ui/ui_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ui/ui_lib.c b/crypto/ui/ui_lib.c
index 2cbed03717..5b6cacf9f8 100644
--- a/crypto/ui/ui_lib.c
+++ b/crypto/ui/ui_lib.c
@@ -100,7 +100,7 @@ UI *UI_new_method(const UI_METHOD *method)
ret->strings=NULL;
ret->user_data=NULL;
- ret->ex_data=NULL;
+ CRYPTO_new_ex_data(ui_meth,ret,&ret->ex_data);
return ret;
}