added missing wolfSSL_X509_NAME_free(dName)

pull/7921/head
Reda Chouk 2024-08-29 17:59:02 +02:00
parent 31ec2b0acd
commit 109e4c3dfb
1 changed files with 4 additions and 0 deletions

View File

@ -14003,6 +14003,10 @@ static int GetCertName(DecodedCert* cert, char* full, byte* hash, int nameType,
" found");
WOLFSSL_MSG("Use WOLFSSL_NO_ASN_STRICT if wanting to allow"
" empty DirectoryString's");
#if (defined(OPENSSL_EXTRA) || defined(OPENSSL_EXTRA_X509_SMALL)) && \
!defined(WOLFCRYPT_ONLY)
wolfSSL_X509_NAME_free(dName);
#endif /* OPENSSL_EXTRA */
return ASN_PARSE_E;
}
#endif