Replies: 1 comment 11 replies
-
Is your application x64 or x86? This is often seen when the process runs out of memory. Most common when running 32bit applications (x86). 32bit applications need to be made large address aware. https://github.com/cefsharp/CefSharp/wiki/General-Usage#win32-out-of-memory You can download the libcef.dll.pdb if the call stack originates from libcef I'd suggest enabling crash pad if you haven't already see https://github.com/cefsharp/CefSharp/wiki/Trouble-Shooting#crash-reporting |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
While testing my app I get app crash with Cefsharp Offscreen version. In debug mode it also showing me this window:
I suppose, it can be related to out of memory exception. I just noticed, that exception code is "e0000008", however app name is MYAPP and module with error is kernelbase.dll.
I found that e0000008 - is typical exception for BrowserSubprocess, so could that be somehow related with Cefsharp? Any ideas how to go deeper?
My OS is Windows7 64x , VS 2019 installed. I use Offscreen Cefsharp version, .NET 4.5.2 . Cef version is 90.6.50.0
Beta Was this translation helpful? Give feedback.
All reactions