QT Crash
-
I have the following crash when using QT in a large project. Has anyone had the same problem? How to solve?
MODULE_NAME: Qt5Core
FAULTING_MODULE: 00007fff12690000 ntdll
DEBUG_FLR_IMAGE_TIMESTAMP: 65c2f24f
ERROR_CODE: (NTSTATUS) 0xc0000005 - 0x%p
READ_ADDRESS: ffffffffffffffff
FAULTING_THREAD: 0000000000005aac
DEFAULT_BUCKET_ID: WRONG_SYMBOLS
PRIMARY_PROBLEM_CLASS: WRONG_SYMBOLS
BUGCHECK_STR: APPLICATION_FAULT_WRONG_SYMBOLS_STACK_CORRUPTION
LAST_CONTROL_TRANSFER: from 00007ffe8b272343 to 00007ffe8b1d22d0
STACK_TEXT:
0000001305afb6e0 00007ffe
8b272343 : 000001de2c01a5f0 00000000
00000004 000001de2c01a5f0 000001de
3f9c6b60 : Qt5Core!QObject::qt_static_metacall+0xf60
0000001305afb830 00007ffe
8b169d6e : 000001de2c01a5f0 00000000
0000002b 000001de2c01a5f0 00000000
000a0d01 : Qt5Core!QWindowsPipeWriter::bytesWritten+0x33
0000001305afb870 00007ffe
8b1dbac4 : 000001de3f9c6b60 000001de
3f9c6b60 000001de5b2b0000 000001de
3239b000 : Qt5Core!QWindowsPipeWriter::emitPendingBytesWrittenValue+0x4e
0000001305afb8b0 00007ffe
8b1da461 : 000001de2c01a5f0 00000000
00000000 000001de3f9c6b60 000001de
5b34d2b0 : Qt5Core!QMetaCallEvent::placeMetaCall+0x34
0000001305afb8f0 00007ffe
8a464941 : 000001de5d224350 000001de
5d203320 000001de3f9c6b60 000001de
2c01a5f0 : Qt5Core!QObject::event+0x171
0000001305afbb00 00007ffe
8a4639ca : 000001de5b34d280 00000013
05afbc30 00007ffe8a450000 000001de
0f66ce30 : Qt5Widgets!QApplicationPrivate::notify_helper+0x111
0000001305afbb30 00007ffe
8b1b338b : 000001de3f9c6b60 00007fff
100237eb 000001de3e89c3a0 000001de
5b34d280 : Qt5Widgets!QApplication::notify+0x18aa
0000001305afc070 00007ffe
8b1b50e2 : 0000000000000000 00007fff
121c17ff 000001de3f9c6b60 ffffffff
ffffffff : Qt5Core!QCoreApplication::notifyInternal2+0xbb
0000001305afc0e0 00007ffe
8b9536ef : 000001de3f9c6b60 00000000
00000000 000001de5b2b5380 000001de
6399c170 : Qt5Core!QCoreApplicationPrivate::sendPostedEvents+0x1e2
0000001305afc1a0 00007ffe
8b1fc4d4 : 000001de5b2b5380 00000013
00000004 0000000000000000 000001de
6399c170 : qwindows!qt_plugin_query_metadata+0x1f0f
0000001305afc1d0 00007ffe
8b9536c9 : 000001de5b2b5380 00000000
00000000 000001de6399c170 00000000
00000000 : Qt5Core!QEventDispatcherWin32::processEvents+0x74
0000001305aff2f0 00007ffe
8b1af7df : 0000000000000000 00007ffe
00000014 0000000000000000 00007ff6
8f78a370 : qwindows!qt_plugin_query_metadata+0x1ee9
0000001305aff320 00007ffe
8b1b2355 : 000001de5d22d8d8 00000000
00000000 0000001305aff460 00007ffe
8b2d4c70 : Qt5Core!QEventLoop::exec+0x1bf
0000001305aff380 00007ff6
8b23e62d : 0000000000000044 00000013
05aff6a8 0000000000000044 00000013
05aff6a8 : Qt5Core!QCoreApplication::exec+0x155 -
Has anyone had the same problem? How to solve?
C++ programmers have written code that crashes since day 1.
You solve it by debugging your program.ERROR_CODE: (NTSTATUS) 0xc0000005 - 0x%p READ_ADDRESS: ffffffffffffffff
Application Error 0xc0000005 (Access Violation) while trying to access using a memory address 0xffffffffffffffff. This is a classic invalid/dangling pointer problem.
There's a slim chance this is caused by using an incompatible Qt 5 library set with an executable but, since you provide absolutely nothing about the "large project" we can only speculate.