You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A null deref while Tracy is attached causes the whole program to exit and Tracy to report a crash. Normally the program would handle the null deref gracefully using a try/catch, but Tracy's error catching seems to override it. We have encountered a similar issue previously with Chromium Embedded Framework which was fixed by passing --disable-in-process-stack-traces as an argument in it's init proc.
Reproduction steps:
Have a C# program with Tracy attached through Tracy-CSharp (great project, thanks so much!)
intentionally trigger a null dereference in a try/catch loop
A null deref while Tracy is attached causes the whole program to exit and Tracy to report a crash. Normally the program would handle the null deref gracefully using a try/catch, but Tracy's error catching seems to override it. We have encountered a similar issue previously with Chromium Embedded Framework which was fixed by passing
--disable-in-process-stack-traces
as an argument in it's init proc.Reproduction steps:
System info:
Linux x64 - Ubuntu 24.10, X11 window manager, dotnet 8, Tracy/Tracy-CSharp version 0.11.1
The text was updated successfully, but these errors were encountered: