Cleanups for IDE/WIN10 user_settings.h to allow for FIPS 140-2 3389 cert. Fixed compiler warning with possible use of uninitialized data.

This commit is contained in:
David Garske
2023-10-06 14:44:29 -07:00
parent 0e35e9cbbe
commit 3cebf35b1b
2 changed files with 13 additions and 1 deletions

View File

@@ -2110,7 +2110,7 @@ int wolfSSL_PEM_write_RSAPrivateKey(XFILE fp, WOLFSSL_RSA *rsa,
{
int ret = 1;
byte* pem = NULL;
int pLen;
int pLen = 0;
(void)cb;
(void)arg;