Replies: 7 comments 15 replies
-
I was actually wrong in my statement that the error shows itself only for some particular site. |
Beta Was this translation helpful? Give feedback.
-
I know about sourcelink. |
Beta Was this translation helpful? Give feedback.
-
I never meant that I need separate build for source link. Just that it's harder to debug program compiled in Release mode. There's something in the way newer MS compiler builds CefSharp.BrowserSubprocess.exe/dll that triggers the crash. |
Beta Was this translation helpful? Give feedback.
-
Well, I've found the culprit - it's editbin from the latest Visual Studio. |
Beta Was this translation helpful? Give feedback.
-
The problem is with this commit: Instead of setting stack size to 0x800000, it sets it to 0 - supposedly due to the fact that editbin (at least from VS 17.3.3) doesn't understand the syntax of hexadecimal prefix. |
Beta Was this translation helpful? Give feedback.
-
This is bug report for Visual Studio (currently Under consideration): I hope it will be fixed in the next version. |
Beta Was this translation helpful? Give feedback.
-
According to Microsoft engineering team, the issue was fixed internally: "A fix for this issue has been internally implemented and is being prepared for release. We’ll update you once it becomes available for download." |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Version 104.4.240 x64
Built from source
Win11
WinForms & WPF
I get the following crash when logging in to a particular site (internet banking):
Exception thrown at 0x00007FF822F5DD57 (libcef.dll) in CefSharp.BrowserSubprocess.exe: 0xC00000FD: Stack overflow (parameters: 0x0000000000000001, 0x00000099F9585000).
An unhandled exception of type 'System.StackOverflowException' occurred in CefSharp.BrowserSubprocess.Core.dll
It is 100% reproducible and happens in CefSharp.WinForms.Example, but there is no crash in libcef client executable.
Problem is - the exception happens after logon to internet banking site, and I don't know an open site to reproduce the crash.
Possibly, it has something to do with page size changing.
Stack trace in Visual Studio:
Stack trace from DebugDiag:
Beta Was this translation helpful? Give feedback.
All reactions