WebEngineCore crashes always
-
I use webengineview for web page , but usually I receive always crash. Just crash time changing.
Faulting application name: MyApp.exe, version: 0.0.0.0, time stamp: 0x6a747042 Faulting module name: Qt6WebEngineCore.dll, version: 6.9.3.0, time stamp: 0x68d5ad0f Exception code: 0xc0000005 Fault offset: 0x0000000000f722d3 Faulting process id: 0x5a94 Faulting application start time: 0x01dd2596f0a700fe Faulting application path: C:\Users\X\Desktop\MyApp\build\Desktop_Qt_6_9_3_MSVC2022_64bit-Release\MyApp.exe Faulting module path: C:\Qt\6.9.3\msvc2022_64\bin\Qt6WebEngineCore.dll Report Id: 088e9cab-e362-41a9-b787-6659e799a6a8 Faulting package full name: Faulting package-relative application ID:Why its happening ?
Any idea for helping ?
-
I use webengineview for web page , but usually I receive always crash. Just crash time changing.
Faulting application name: MyApp.exe, version: 0.0.0.0, time stamp: 0x6a747042 Faulting module name: Qt6WebEngineCore.dll, version: 6.9.3.0, time stamp: 0x68d5ad0f Exception code: 0xc0000005 Fault offset: 0x0000000000f722d3 Faulting process id: 0x5a94 Faulting application start time: 0x01dd2596f0a700fe Faulting application path: C:\Users\X\Desktop\MyApp\build\Desktop_Qt_6_9_3_MSVC2022_64bit-Release\MyApp.exe Faulting module path: C:\Qt\6.9.3\msvc2022_64\bin\Qt6WebEngineCore.dll Report Id: 088e9cab-e362-41a9-b787-6659e799a6a8 Faulting package full name: Faulting package-relative application ID:Why its happening ?
Any idea for helping ?
@Joe-von-Habsburg Use a debugger to get stack trace.
Try a more recent Qt version. -
I cant receive crash on debug mode,
I found the crash problem. WhenI write that topic, I think problem from socket, but I know now, problem is qwebengine.
@jsulm said in WebEngineCore crashes always:
Try a more recent Qt version.
Can it solve the problem ?
-
I cant receive crash on debug mode,
I found the crash problem. WhenI write that topic, I think problem from socket, but I know now, problem is qwebengine.
@jsulm said in WebEngineCore crashes always:
Try a more recent Qt version.
Can it solve the problem ?
-
You run the exe directly from build\Desktop_Qt_6_9_3_MSVC2022_64bit-Release, i.e. from a raw Qt Creator build folder — not from a build that has been windeployqt. QtWebEngine (based on Chromium) is not satisfied with the DLL itself: it also needs QtWebEngineProcess.exe, resources.pak/icudtl.dat files, and the translations/qtwebengine_locales folder alongside it. When they are missing, the renderer/GPU sub-process does not start correctly, and this manifests itself precisely as an access violation (0xc0000005) in Qt6WebEngineCore.dll at a variable time — not necessarily on the first run but at the point where the render is performed.
-
Run windeployqt.exe --webengine on your exe (from C:\Qt\6.9.3\msvc2022_64\bin), and check again if the crashes disappear.