mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Properly initialize Timer::type. Fixes Coverity 1431144.
This commit is contained in:
parent
e9ec2ee06d
commit
914a4d6342
2 changed files with 3 additions and 3 deletions
|
@ -65,8 +65,8 @@ public:
|
|||
void Describe(ODesc* d) const;
|
||||
|
||||
protected:
|
||||
Timer() {}
|
||||
TimerType type;
|
||||
Timer() = default;
|
||||
TimerType type{};
|
||||
};
|
||||
|
||||
class TimerMgr : public iosource::IOSource {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue