[openssl] master update
Richard Levitte
levitte at openssl.org
Tue Feb 16 19:16:15 UTC 2021
The branch master has been updated
via 55e9d8cfffc1a40b0ab72e014ff62d5ef2a0ed63 (commit)
from c913dbd7168393f7eab0dd6132d0d2581dd9e485 (commit)
- Log -----------------------------------------------------------------
commit 55e9d8cfffc1a40b0ab72e014ff62d5ef2a0ed63
Author: Richard Levitte <levitte at openssl.org>
Date: Tue Feb 16 20:02:24 2021 +0100
TEST: Add missing initialization
Compiler complained.
Reviewed-by: Matt Caswell <matt at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14204)
-----------------------------------------------------------------------
Summary of changes:
test/rsa_test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/rsa_test.c b/test/rsa_test.c
index f52053bda1..095cddd8aa 100644
--- a/test/rsa_test.c
+++ b/test/rsa_test.c
@@ -303,7 +303,7 @@ static int test_rsa_sslv23(int idx)
static int test_rsa_oaep(int idx)
{
int ret = 0;
- RSA *key;
+ RSA *key = NULL;
unsigned char ptext[256];
unsigned char ctext[256];
static unsigned char ptext_ex[] = "\x54\x85\x9b\x34\x2c\x49\xea\x2a";
More information about the openssl-commits
mailing list