mirror of https://github.com/openssl/openssl.git
Silence gcc false positive warning on refdatalen in test/tls13encryptiontest.c
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> (Merged from https://github.com/openssl/openssl/pull/12041)
This commit is contained in:
parent
7f699cb663
commit
1349865a56
|
|
@ -288,7 +288,7 @@ static int test_record(SSL3_RECORD *rec, RECORD_DATA *recd, int enc)
|
|||
{
|
||||
int ret = 0;
|
||||
unsigned char *refd;
|
||||
size_t refdatalen;
|
||||
size_t refdatalen = 0;
|
||||
|
||||
if (enc)
|
||||
refd = multihexstr2buf(recd->ciphertext, &refdatalen);
|
||||
|
|
|
|||
Loading…
Reference in New Issue