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/LZ/LZInWindow.cpp')
-rwxr-xr-x7zip/Compress/LZ/LZInWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/7zip/Compress/LZ/LZInWindow.cpp b/7zip/Compress/LZ/LZInWindow.cpp
index a16a2c19..64928806 100755
--- a/7zip/Compress/LZ/LZInWindow.cpp
+++ b/7zip/Compress/LZ/LZInWindow.cpp
@@ -72,7 +72,7 @@ HRESULT CLZInWindow::ReadBlock()
if(size == 0)
return S_OK;
UInt32 numReadBytes;
- RINOK(_stream->ReadPart(_buffer + _streamPos, size, &numReadBytes));
+ RINOK(_stream->Read(_buffer + _streamPos, size, &numReadBytes));
if(numReadBytes == 0)
{
_posLimit = _streamPos;