Fixed allocation limiter.

This commit is contained in:
Florian Nücke
2020-12-15 09:04:25 +01:00
parent 9fc02d0bc2
commit ec3cacd57e

View File

@@ -47,6 +47,7 @@ public final class Allocator {
}
if (size != 0) {
ALLOCATIONS.put(handle, new Allocation(size));
allocated += size;
}
return true;
}