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 0e65c425..aacaea9d 100755
--- a/7zip/Compress/LZ/LZInWindow.cpp
+++ b/7zip/Compress/LZ/LZInWindow.cpp
@@ -68,7 +68,7 @@ HRESULT CLZInWindow::ReadBlock()
{
if(_streamEndWasReached)
return S_OK;
- while(true)
+ for (;;)
{
UInt32 size = (UInt32)(_bufferBase - _buffer) + _blockSize - _streamPos;
if(size == 0)