-
Notifications
You must be signed in to change notification settings - Fork 5.1k
[mono][debugger] Fix infinite recursion and null pointer access while debugging #73024
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
Conversation
Tagging subscribers to this area: @thaystg Issue Details
|
@lewing should we backport to .net7 preview 7? |
Just curious, how does it show up for the user? Does the IDE hang, or debugging is halted, or something else? |
A stack overflow on runtime side because of the infinite recursion. |
IntPtr
class in .net7 has a field called_value
which points to itself so it was generating a recursive call.This is how we see IntPtr in the locals window:
