Sigill when debugging application with
Unsolved
General and Desktop
-
I got the following error:
SIGILL
Illegal instructionwhen I start in debug mode an application which create a QSslConfiguration variable.
The application runs fine in both release and debug mode until I press "start debugging."It's a known behavior?
This is the piece of code:
QUrlQuery query; query.addQueryItem("fields", "value"); data.append(query.toString(QUrl::FullyEncoded)); QSslConfiguration conf; conf.setPeerVerifyMode(QSslSocket::VerifyNone);
The debugger issues the above error on the declaration of 'conf'.
-
@Mark81 said:
SIGILL
That is an illegal instruction signal, which is pretty rare. Basically means the memory your program's residing in got corrupted somehow. So there's something very wrong. Check any callbacks, overwriting by mistake virtual tables and the such.