mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 21:03:30 -07:00
Initialize pointer to a default value
This commit is contained in:
parent
6de72ecc77
commit
02d906d3ae
77 changed files with 178 additions and 202 deletions
|
@ -58,10 +58,10 @@ namespace Http
|
|||
void incomingConnection(qintptr socketDescriptor) override;
|
||||
void removeConnection(Connection *connection);
|
||||
|
||||
IRequestHandler *m_requestHandler;
|
||||
IRequestHandler *m_requestHandler = nullptr;
|
||||
QSet<Connection *> m_connections; // for tracking persistent connections
|
||||
|
||||
bool m_https;
|
||||
bool m_https = false;
|
||||
QList<QSslCertificate> m_certificates;
|
||||
QSslKey m_key;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue