fix: uninintialized field tr_torrent_files.total_size_ (#2941)

This commit is contained in:
Charles Kerr 2022-04-17 23:21:18 -05:00 committed by GitHub
parent af49e0f1af
commit 3a8cac3914
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -147,5 +147,5 @@ private:
};
std::vector<file_t> files_;
uint64_t total_size_;
uint64_t total_size_ = 0;
};