Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix array bound checking in credentials filtering with no allowList
count is an index into the creds array in getAssertionState, and it is checked against the array bounds before data are copied. The array contains space for ALLOW_LIST_MAX_SIZE entries but we are only filling it up to ALLOW_LIST_MAX_SIZE - 1 since the loop terminates early.
- Loading branch information