Skip to content

Commit

Permalink
HPCC-33003 Fix (harmless) coverity warning: Uninitialized members
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday committed Nov 18, 2024
1 parent 42e8bcb commit 740f136
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 740f136

Please sign in to comment.