Ensure SessionAdapter members are initialized

Fixes Coverity #1453273
This commit is contained in:
Tim Wojtulewicz 2021-05-26 10:51:51 -07:00
parent 815b8cbcc9
commit 5f57daf9d1
3 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
4.1.0-dev.666 | 2021-05-26 10:51:51 -0700
* Ensure SessionAdapter members are initialized (Tim Wojtulewicz, Corelight)
Fixes Coverity #1453273
4.1.0-dev.665 | 2021-05-26 08:07:26 +0200

View file

@ -1 +1 @@
4.1.0-dev.665
4.1.0-dev.666

View file

@ -95,8 +95,8 @@ public:
protected:
IPBasedAnalyzer* parent;
analyzer::pia::PIA* pia;
IPBasedAnalyzer* parent = nullptr;
analyzer::pia::PIA* pia = nullptr;
};
} // namespace zeek::packet_analysis::IP