evp/evp_test.c: avoid crashes when referencing uninitialized pointers.

For some reason failure surfaced on ARM platforms.

Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
Andy Polyakov 2015-02-22 19:13:35 +01:00
parent 15b5d6585d
commit 1526fea544

View File

@ -454,6 +454,8 @@ int main(int argc, char **argv)
ERR_load_crypto_strings();
OpenSSL_add_all_algorithms();
memset(&t,0,sizeof(t));
t.meth = NULL;
t.public = NULL;
t.private = NULL;