Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
Qt Creator 3.0.0-rc1
-
None
-
Gentoo-Linux, Qt 4.8.5
-
54a12ebb797fa6c6805dc9d7a102b8f0339243a6
Description
I see a crash in QtCreator which was introduced in 3256b7b2ef7073264af3197bdcd62f4f9fe92ea1.
The following mini program triggers it:
QT += core QT -= gui TARGET = Test CONFIG += console CONFIG -= app_bundle TEMPLATE = app SOURCES += main.cpp
#include <QCoreApplication> int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); if (::serverExe.isNull()) return; return a.exec(); }
If I comment out the if (::serverExe.isNull()) return; line, it does not crash.