mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-08 06:48:41 +00:00
missing count in the range list concat
This commit is contained in:
@@ -758,6 +758,7 @@ rng1u64_list_concat(Rng1U64List *list, Rng1U64List *to_concat)
|
|||||||
list->first = to_concat->first;
|
list->first = to_concat->first;
|
||||||
list->last = to_concat->last;
|
list->last = to_concat->last;
|
||||||
}
|
}
|
||||||
|
list->count += to_concat->count;
|
||||||
MemoryZeroStruct(to_concat);
|
MemoryZeroStruct(to_concat);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user