commit 95a4588a68d24e1fa007efde14d8f7a86b01a0c4
parent 359e1174cbe9119b6beda16b8da52cff5cf0e772
Author: fundamental <[email protected]>
Date: Fri, 6 Apr 2018 23:37:21 -0400
Allocator: Fix allocating 0 size array
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Misc/Allocator.h b/src/Misc/Allocator.h
@@ -61,7 +61,7 @@ class Allocator
T *valloc(size_t len, Ts&&... ts)
{
T *data = (T*)alloc_mem(len*sizeof(T));
- if(!data) {
+ if(!data && len != 0) {
rollbackTransaction();
throw std::bad_alloc();
}