mirror of
https://github.com/transmission/transmission
synced 2025-02-21 13:46:52 +00:00
fix: uninitialized session_id_t values (#5396)
This commit is contained in:
parent
58ee5e5520
commit
256fd698d7
1 changed files with 2 additions and 2 deletions
|
@ -51,8 +51,8 @@ private:
|
|||
|
||||
current_time_func_t const get_current_time_;
|
||||
|
||||
mutable session_id_t current_value_;
|
||||
mutable session_id_t previous_value_;
|
||||
mutable session_id_t current_value_ = {};
|
||||
mutable session_id_t previous_value_ = {};
|
||||
mutable tr_sys_file_t current_lock_file_ = TR_BAD_SYS_FILE;
|
||||
mutable tr_sys_file_t previous_lock_file_ = TR_BAD_SYS_FILE;
|
||||
mutable time_t expires_at_ = 0;
|
||||
|
|
Loading…
Reference in a new issue