-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[release/9.0-staging] Add a missing = in BigInteger.cs #109732
Open
github-actions
wants to merge
6
commits into
release/9.0-staging
Choose a base branch
from
backport/pr-105456-to-release/9.0-staging
base: release/9.0-staging
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
[release/9.0-staging] Add a missing = in BigInteger.cs #109732
github-actions
wants to merge
6
commits into
release/9.0-staging
from
backport/pr-105456-to-release/9.0-staging
+272
−2
Conversation
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
…eneration.cs Co-authored-by: Dan Moseley <danmose@microsoft.com>
Tagging subscribers to this area: @dotnet/area-system-numerics |
tannergooding
added
the
Servicing-consider
Issue for next servicing release review
label
Nov 12, 2024
CC. @jeffhandley |
jeffhandley
approved these changes
Nov 12, 2024
Added the additional regression test from the other community PR. |
Co-authored-by: Tanner Gooding <tagoo@outlook.com>
Tagging @artl93 for awareness |
artl93
approved these changes
Nov 21, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
Backport of #105456 to release/9.0-staging
/cc @tannergooding @LEI-Hongfaan
Customer Impact
Reported by a customer in #109669. BigInteger may compute an incorrect result when the value produced is a value of the form
-(2^(32 * n))
wheren >= 1
. This is primarily prevalent to bitwise operations such as&
(and),|
(or), and^
(xor).Regression
This is a regression from .NET 8.
Testing
Additional tests covering the edge case were added. The failure was due to a comparison doing
>
(greater than) rather than>=
(greater than or equal to) as the equals sign was accidentally dropped in a refactoring.Risk
Low.
This fix is itself low risk, resolves the issue, and is understood why it is the correct solution.