Skip to content

Modify allen buffer logic adding a boolean to check allocation

This MR fixes a bug by which the Allen buffers release depended on a check of the span size being different from zero. This was not always the case, as an allocation of size 0 is resolved as an allocation of size 1 by the memory manager (intended behaviour). A boolean is now used instead.

Merge request reports