diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-07-12 23:18:32 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-07-14 13:04:41 +0200 |
commit | 2a597bdcfcb6fd685be121d7f52693832c122589 (patch) | |
tree | c142767cd96672eba3891ac34be4ee065ec60640 /src | |
parent | 19abcac32009d58450d80add39c5b1d5e7d8a993 (diff) |
w
Diffstat (limited to 'src')
-rw-r--r-- | src/handle-page.inl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/handle-page.inl b/src/handle-page.inl index 09d351ac..fbd28043 100644 --- a/src/handle-page.inl +++ b/src/handle-page.inl @@ -56,6 +56,7 @@ void Page<Obj, PageSize>::deallocate(Handle<Obj, PageSize> obj) fm_assert(obj.counter == ctr); item.next = first_free; used_count--; + used_map.set(index, false); first_free = obj.index; } |