Remove unreliable assertions around Query and Fragment offsets#119557
Merged
Remove unreliable assertions around Query and Fragment offsets#119557
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR fixes a race condition in URI parsing assertions by removing unreliable debug assertions for Query and Fragment offsets. The issue occurs when multiple threads access the same URI instance during parsing, causing assertions to fail when one thread checks parsing flags while another thread has already populated the offsets.
- Removes two debug assertions that check Query and Fragment offsets are zero
- Adds explanatory comment about the race condition with multi-threaded access
- Maintains other assertions that remain valid in multi-threaded scenarios
Contributor
|
Tagging subscribers to this area: @dotnet/ncl |
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #119547
#119547 (comment)