From 522e98929282b2f4ac3f293e2a581dd4fa576042 Mon Sep 17 00:00:00 2001 From: Takashi Kojo Date: Fri, 7 Apr 2017 10:44:21 +0900 Subject: [PATCH] set pkey->rsa in EVP_PKEY_get1_RSA --- src/ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssl.c b/src/ssl.c index 6efa29d8b..a358eb2e5 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -23865,7 +23865,7 @@ WOLFSSL_RSA* wolfSSL_EVP_PKEY_get1_RSA(WOLFSSL_EVP_PKEY* key) wolfSSL_RSA_free(local); local = NULL; } - + key->rsa = local; return local; }