Add UB check to FreeListAllocator::deallocate
#2658
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This, together with the existing check that the suballocation is not already free, ensures that all UB that can arise from
FreeListAllocator::deallocate
is caught with debug assertions on. Of course, since there are raw pointers in use, it's always going to stay unsafe because the user could supply a pointer with the right address but the wrong provenance. But that would require going out of your way to do that specifically. On the other hand, using something "safe" like an index means that it might not be possible to catch the UB where you allocate using one suballocator and deallocate using another because indices are relative, which this catches because pointers are absolute. So in some sense I consider this safer.