CountDistinctClusters: nullptrs disallowed

This commit is contained in:
Greg Sanders
2025-03-31 13:01:54 -04:00
parent 8bca0d325a
commit 57433502e6
2 changed files with 3 additions and 3 deletions

View File

@@ -1880,7 +1880,7 @@ TxGraph::GraphIndex TxGraphImpl::CountDistinctClusters(std::span<const Ref* cons
std::vector<Cluster*> clusters;
clusters.reserve(refs.size());
for (const Ref* ref : refs) {
if (ref == nullptr) continue;
Assume(ref);
if (GetRefGraph(*ref) == nullptr) continue;
Assume(GetRefGraph(*ref) == this);
auto cluster = FindCluster(GetRefIndex(*ref), level);