missing count in the range list concat

This commit is contained in:
Nikita Smith
2026-06-16 17:22:52 -07:00
parent 956df5527a
commit 267b8fc519
+1
View File
@@ -758,6 +758,7 @@ rng1u64_list_concat(Rng1U64List *list, Rng1U64List *to_concat)
list->first = to_concat->first;
list->last = to_concat->last;
}
list->count += to_concat->count;
MemoryZeroStruct(to_concat);
}
}