Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
None
-
6.6.0 Beta3
-
None
Description
I was looking into QTBUG-115703 : QtWebEngine 6.6.0 crashes on Windows.
There are multiple issues reported in the bug, and this one specific to Debug mode.
The user compiled Qt modules in Release mode and has a sample application (e.g., a simple browser).
They compiled the sample application in Debug mode, and when running the application, it crashes.
The crash is from ~QArraDataPointer()
I could replicate the issue same using the following code. Sample project is attached for reference.
====================================================
void funcString()
{
QStringList args;
args.append("abc");
}
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
funcString();
return a.exec();
}
==================================================
Please check
Attachments
Issue Links
- relates to
-
QTBUG-125147 qtdeclarative fails to link on MSVC due to mixing debug and release libraries (missing installed artifacts)
- Open