Skip to content

Commit

Permalink
Merge pull request hpcc-systems#19304 from ghalliday/issue33003
Browse files Browse the repository at this point in the history
HPCC-33003 Fix (harmless) coverity warning: Uninitialized members

Reviewed-By: Attila Vamos <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Nov 19, 2024
2 parents af63135 + 740f136 commit 5d7636b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/jhtree/jhtree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ class CNodeMRUCache
}
}
CNodeMRUSubCache cache[cacheBuckets];
bool enabled;
bool enabled = false;
protected:
std::vector<std::shared_ptr<IMetric>> metrics;
};
Expand Down

0 comments on commit 5d7636b

Please sign in to comment.