We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f83fe8 commit 9919763Copy full SHA for 9919763
1 file changed
wolfcrypt/src/asn.c
@@ -33712,6 +33712,9 @@ void FreeDecodedCRL(DecodedCRL* dcrl)
33712
33713
while(tmp) {
33714
RevokedCert* next = tmp->next;
33715
+#if defined(OPENSSL_EXTRA)
33716
+ XFREE(tmp->extensions, dcrl->heap, DYNAMIC_TYPE_REVOKED);
33717
+#endif
33718
XFREE(tmp, dcrl->heap, DYNAMIC_TYPE_REVOKED);
33719
tmp = next;
33720
}
0 commit comments