fix: uninitialized session_id_t values (#5396)

This commit is contained in:
Kyle Sanderson 2023-04-14 22:07:07 -07:00 committed by GitHub
parent e91af26923
commit 06c784f639
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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;