-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the ExposedLocalsNumbering test (#105037)
* Fix the ExposedLocalsNumbering test The test had a stack corrupting race condition: 1) Main thread returns from "Main". 2) Main thread calls some runtime code on the stack of former "Main". 3) Mutator thread writes to the "safeIndex" variable, which is now part of that runtime's code stack. 4) Things crash. Fix by 'parking' the mutated index in some dynamic memory instead. * issues.targets de-exclusion
- Loading branch information
1 parent
8cc102f
commit 31bc167
Showing
2 changed files
with
10 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters