mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-08 12:07:03 -06:00
4.26 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
af1fe52701
commit
31e7b924e8
@@ -109,8 +109,11 @@ public:
|
||||
if (SubAllocatorSize == size)
|
||||
return true;
|
||||
StopSubAllocator();
|
||||
if ((HeapStart = (Byte *)::BigAlloc(size)) == 0)
|
||||
return false;
|
||||
if (size == 0)
|
||||
HeapStart = 0;
|
||||
else
|
||||
if ((HeapStart = (Byte *)::BigAlloc(size)) == 0)
|
||||
return false;
|
||||
SubAllocatorSize = size;
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user