mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 03:28:19 +00:00
Fix uninitialized class member Coverity findings
This commit is contained in:
parent
923ffbf25a
commit
4c58fb26c4
8 changed files with 22 additions and 21 deletions
|
@ -112,8 +112,8 @@ private:
|
|||
TableValPtr tv = nullptr;
|
||||
|
||||
std::vector<ZVal*> loop_vars;
|
||||
const std::vector<TypePtr>* loop_var_types;
|
||||
const std::vector<bool>* lvt_is_managed;
|
||||
const std::vector<TypePtr>* loop_var_types = nullptr;
|
||||
const std::vector<bool>* lvt_is_managed = nullptr;
|
||||
TypePtr value_var_type;
|
||||
|
||||
std::optional<DictIterator<TableEntryVal>> tbl_iter;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue