Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: explicitly pass in filter to async analysis go routine (#326)
Before the filter inside the func literal was capturing the value from the outer loop. This is a subtle mistake, since in combination with running the function literal as go routine, the value of filter could have already changed at invocation time. To fix this, the filter is now passed in as an argument to the func literal. Signed-off-by: Patrick Pichler <[email protected]> Co-authored-by: Patrick Pichler <[email protected]>
- Loading branch information