Fix uninitialized class member Coverity findings

This commit is contained in:
Tim Wojtulewicz 2025-07-11 21:38:57 -07:00
parent 923ffbf25a
commit 4c58fb26c4
8 changed files with 22 additions and 21 deletions

View file

@ -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;