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