We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b923241 commit 9c822d7Copy full SHA for 9c822d7
1 file changed
wolfcrypt/src/asn.c
@@ -33615,6 +33615,9 @@ void FreeDecodedCRL(DecodedCRL* dcrl)
33615
33616
while(tmp) {
33617
RevokedCert* next = tmp->next;
33618
+#if defined(OPENSSL_EXTRA)
33619
+ XFREE(tmp->extensions, dcrl->heap, DYNAMIC_TYPE_REVOKED);
33620
+#endif
33621
XFREE(tmp, dcrl->heap, DYNAMIC_TYPE_REVOKED);
33622
tmp = next;
33623
}
0 commit comments