Skip to content

Commit

Permalink
TEST: Add missing initialization
Browse files Browse the repository at this point in the history
Compiler complained.

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from openssl#14204)
  • Loading branch information
levitte committed Feb 16, 2021
1 parent c913dbd commit 55e9d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/rsa_test.c
Expand Up @@ -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";
Expand Down

0 comments on commit 55e9d8c

Please sign in to comment.