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 'CPP/7zip/Archive/Com/ComHandler.cpp')
-rwxr-xr-xCPP/7zip/Archive/Com/ComHandler.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/CPP/7zip/Archive/Com/ComHandler.cpp b/CPP/7zip/Archive/Com/ComHandler.cpp
index aa9bf859..2255c021 100755
--- a/CPP/7zip/Archive/Com/ComHandler.cpp
+++ b/CPP/7zip/Archive/Com/ComHandler.cpp
@@ -217,16 +217,14 @@ STDMETHODIMP CHandler::Extract(const UInt32* indices, UInt32 numItems,
size = (UInt32)rem;
RINOK(_stream->Seek(offset, STREAM_SEEK_SET, NULL));
- UInt32 realProcessedSize;
- RINOK(ReadStream(_stream, sect, size, &realProcessedSize));
+ size_t realProcessedSize = size;
+ RINOK(ReadStream(_stream, sect, &realProcessedSize));
if (realProcessedSize != size)
break;
if (realOutStream)
{
- RINOK(WriteStream(realOutStream, sect, size, &realProcessedSize));
- if (realProcessedSize != size)
- break;
+ RINOK(WriteStream(realOutStream, sect, size));
}
pos += size;
}