mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-10 23:42:46 -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
|
@ -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