-
Bug
-
Resolution: Invalid
-
Not Evaluated
-
None
-
4.7.0, 4.7.2, 4.7.3, 4.8.x
-
None
-
Qt SDK
qgenericengine.cpp
void QGenericEngine::doRequestUpdate() { #ifndef QT_NO_NETWORKINTERFACE QMutexLocker locker(&mutex); // Immediately after connecting with a wireless access point // QNetworkInterface::allInterfaces() will sometimes return an empty list. Calling it again a // second time results in a non-empty list. If we loose interfaces we will end up removing // network configurations which will break current sessions. QList<QNetworkInterface> interfaces = QNetworkInterface::allInterfaces(); if (interfaces.isEmpty()) interfaces = QNetworkInterface::allInterfaces();
QStringList previous = accessPointConfigurations.keys(); // this line causes crash!