HTTP server: fixed wrong assert

pull/127/head
f4exb 2017-12-24 20:27:20 +01:00
rodzic 1987bbac77
commit c732fe3862
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -25,7 +25,7 @@ HttpConnectionHandlerPool::HttpConnectionHandlerPool(QSettings* settings, HttpRe
HttpConnectionHandlerPool::HttpConnectionHandlerPool(const HttpListenerSettings* settings, HttpRequestHandler* requestHandler)
: QObject(), useQtSettings(false)
{
Q_ASSERT(listenerSettings != 0);
Q_ASSERT(settings != 0);
this->settings = 0;
this->listenerSettings = settings;
this->requestHandler = requestHandler;