Merge pull request #8896 from holtrop/fix-asn-memory-leak

Fix memory leak in ParseCRL_Extensions
This commit is contained in:
David Garske
2025-06-19 06:18:41 -07:00
committed by GitHub

View File

@ -40601,6 +40601,7 @@ static int ParseCRL_Extensions(DecodedCRL* dcrl, const byte* buf, word32 idx,
dcrl->crlNumberSet = 1;
}
mp_free(m);
FREE_MP_INT_SIZE(m, NULL, DYNAMIC_TYPE_TMP_BUFFER);
}
/* TODO: check criticality */