Skip to content
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

Fix IndexOutOfRangeException in ExceptionFormatter #1765

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

kvpt
Copy link

@kvpt kvpt commented Feb 20, 2025

Commit b2689be introduced a regression when stacktrace don't have frame.

Here is the crash in my app.
image

The change that caused this issue is that stackTrace.GetFrame(0) has been replaced by stackTrace.GetFrames()[0].
Method GetFrame does index bound check whereas stackTrace.GetFrames()[0] is a simple array access and don't.
I put back the previous method to fix the issue.

I tried to make a test to cover this case but I failed to create an exception with no frame.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant