mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-11 15:56:17 -07:00
Fix unitialized scalar field bugs
This commit is contained in:
parent
9bdd26de43
commit
ea8acf3bbd
3 changed files with 5 additions and 1 deletions
|
@ -60,6 +60,9 @@ bool fileFilter(const std::string &f)
|
|||
|
||||
TorrentCreatorThread::TorrentCreatorThread(QObject *parent)
|
||||
: QThread(parent)
|
||||
, m_private(false)
|
||||
, m_pieceSize(0)
|
||||
, m_abort(false)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -96,6 +96,7 @@ Smtp::Smtp(QObject *parent)
|
|||
: QObject(parent)
|
||||
, m_state(Init)
|
||||
, m_useSsl(false)
|
||||
, m_authType(AuthPlain)
|
||||
{
|
||||
#ifndef QT_NO_OPENSSL
|
||||
m_socket = new QSslSocket(this);
|
||||
|
|
|
@ -68,6 +68,7 @@ struct WebSession
|
|||
WebSession(const QString& id)
|
||||
: id(id)
|
||||
{
|
||||
updateTimestamp();
|
||||
}
|
||||
|
||||
void updateTimestamp()
|
||||
|
@ -349,7 +350,6 @@ bool AbstractWebApplication::sessionStart()
|
|||
{
|
||||
if (session_ == 0) {
|
||||
session_ = new WebSession(generateSid());
|
||||
session_->updateTimestamp();
|
||||
sessions_[session_->id] = session_;
|
||||
|
||||
QNetworkCookie cookie(C_SID, session_->id.toUtf8());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue