Merge pull request #5212 from kaleb-himes/various-warnings

Fix various warnings and an uninitialized XFILE
This commit is contained in:
David Garske
2022-06-04 17:10:17 -07:00
committed by GitHub
3 changed files with 4 additions and 4 deletions

View File

@@ -20654,7 +20654,7 @@ int wc_PemPubKeyToDer_ex(const char* fileName, DerBuffer** der)
int dynamic = 0;
int ret = 0;
long sz = 0;
XFILE file;
XFILE file = NULL;
WOLFSSL_ENTER("wc_PemPubKeyToDer");