Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Compress/Branch/x86_2.cpp')
-rwxr-xr-x7zip/Compress/Branch/x86_2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/7zip/Compress/Branch/x86_2.cpp b/7zip/Compress/Branch/x86_2.cpp
index 00f1ea7a..8f7bff21 100755
--- a/7zip/Compress/Branch/x86_2.cpp
+++ b/7zip/Compress/Branch/x86_2.cpp
@@ -31,7 +31,7 @@ bool CBCJ2_x86_Encoder::Create()
return false;
if (_buffer == 0)
{
- _buffer = (Byte *)BigAlloc(kBufferSize);
+ _buffer = (Byte *)MidAlloc(kBufferSize);
if (_buffer == 0)
return false;
}
@@ -40,7 +40,7 @@ bool CBCJ2_x86_Encoder::Create()
CBCJ2_x86_Encoder::~CBCJ2_x86_Encoder()
{
- BigFree(_buffer);
+ ::MidFree(_buffer);
}
HRESULT CBCJ2_x86_Encoder::Flush()