Skip to content

Commit

Permalink
[BugFix] Fix compiler report warning in uninitialized (backport #53119)…
Browse files Browse the repository at this point in the history
… (#53129)

Co-authored-by: stdpain <[email protected]>
  • Loading branch information
mergify[bot] and stdpain authored Nov 22, 2024
1 parent 8090a14 commit 28c934e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/util/time_guard.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ class TimeGuard {
const char* _file_name;
size_t _line;
int64_t _timeout_ms;
int64_t _begin_time;
LazyMsgCallBack _callback;
int64_t _begin_time = 0;
};

}; // namespace starrocks
Expand Down

0 comments on commit 28c934e

Please sign in to comment.