Details
-
Bug
-
Resolution: Done
-
P2: Important
-
Qt Creator 3.0.0
-
OSX 10.8.5, iOS 7
-
1ce5b1273a0c14cb4bb19f8a6c2ce206c8af318d
Description
qDebug() will cause application to crash when trying to print char 0x01 on iOS.
The issue can only be seen with Qt Creator, XCode works fine with the same application.
main.cpp
#include <QApplication> #include <QDebug> int main(int argc, char *argv[]) { QApplication a(argc, argv); QString test="test"; qDebug() << "Test point 1 : " << test; test[0]=1; qDebug() << "Test point 2 : " << test; return a.exec(); }