Merge pull request #8750 from anhu/crl_RefFree

Add missing call to wolfSSL_RefFree in FreeCRL
This commit is contained in:
Sean Parkinson
2025-05-09 08:24:10 +10:00
committed by GitHub

View File

@ -258,6 +258,7 @@ void FreeCRL(WOLFSSL_CRL* crl, int dynamic)
WOLFSSL_MSG("Couldn't lock x509 mutex"); WOLFSSL_MSG("Couldn't lock x509 mutex");
if (!doFree) if (!doFree)
return; return;
wolfSSL_RefFree(&crl->ref);
} }
#endif #endif