mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 01:28:20 +00:00
Fix uninitialized (or unused) fields.
This commit is contained in:
parent
64f3bef96d
commit
775ec6795e
62 changed files with 135 additions and 98 deletions
|
@ -42,10 +42,10 @@ public:
|
|||
typedef BSSAlignVec::const_iterator BSSAlignVecCIt;
|
||||
|
||||
BroSubstring(const string& string)
|
||||
: BroString(string), _new(false) { }
|
||||
: BroString(string), _num(), _new(false) { }
|
||||
|
||||
BroSubstring(const BroString& string)
|
||||
: BroString(string), _new(false) { }
|
||||
: BroString(string), _num(), _new(false) { }
|
||||
|
||||
BroSubstring(const BroSubstring& bst);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue