Details
-
Bug
-
Resolution: Duplicate
-
P1: Critical
-
4.7.0
-
None
Description
Running the code below renders the application completely unresponsive (can't be killed with Symbian task switcher, battery indicator stops animating, doesn't redraw, etc). The requestComplete, readyRead and sslErrors signals are never emitted. Works fine on Windows. Before hanging following lines appear in the debug output:
StartServer
StartServer 2
StartServer 3
StartServer 4 0
connect1 0
connect1 0
void MainWindow::on_pushButton_clicked() { QNetworkRequest r; r.setUrl(QUrl("https://msp.f-secure.com/web-test/common/test.html")); QNetworkReply* reply = m_nam.get(r); connect(reply, SIGNAL(finished()), this, SLOT(requestComplete())); } void MainWindow::requestComplete() { QNetworkReply* r = (QNetworkReply*) sender(); qDebug() << r->errorString(); qDebug() << r->readAll(); r->deleteLater(); }
Attachments
Issue Links
- is replaced by
-
QTBUG-13033 QSslSocketPrivate::systemCaCertificates() hangs sometimes on Symbian
- Closed