allocgate: actually free memory in gpa

This commit is contained in:
Lee Cannon
2021-12-01 09:44:19 +00:00
parent 8f9d857932
commit 885c73f343

View File

@@ -627,6 +627,8 @@ pub fn GeneralPurposeAllocator(comptime config: Config) type {
self.total_requested_bytes -= entry.value_ptr.requested_size;
}
if (!config.never_unmap) self.backing_allocator.rawFree(old_mem, old_align, ret_addr);
if (config.verbose_log) {
log.info("large free {d} bytes at {*}", .{ old_mem.len, old_mem.ptr });
}