fix uninit var

This commit is contained in:
Hideki Miyazaki
2023-06-03 08:23:39 +09:00
parent ee289fdf89
commit 5624df95b5

View File

@ -36237,7 +36237,7 @@ static int test_wolfSSL_PEM_PrivateKey(void)
const char* fname = "./certs/ecc-key.pem";
const char* fname_ecc_p8 = "./certs/ecc-keyPkcs8.pem";
size_t sz;
size_t sz = 0;
byte* buf = NULL;
EVP_PKEY* pkey2 = NULL;
EVP_PKEY* pkey3 = NULL;