Commit 1526fea5 authored by Andy Polyakov's avatar Andy Polyakov
Browse files

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



For some reason failure surfaced on ARM platforms.

Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
parent 15b5d658
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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;