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/Common/OutBuffer.cpp')
-rwxr-xr-x7zip/Common/OutBuffer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/7zip/Common/OutBuffer.cpp b/7zip/Common/OutBuffer.cpp
index 2d4871f5..f4ec1a30 100755
--- a/7zip/Common/OutBuffer.cpp
+++ b/7zip/Common/OutBuffer.cpp
@@ -15,13 +15,13 @@ bool COutBuffer::Create(UInt32 bufferSize)
return true;
Free();
_bufferSize = bufferSize;
- _buffer = (Byte *)::BigAlloc(bufferSize);
+ _buffer = (Byte *)::MidAlloc(bufferSize);
return (_buffer != 0);
}
void COutBuffer::Free()
{
- BigFree(_buffer);
+ ::MidFree(_buffer);
_buffer = 0;
}