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/Archive/7z/7zDecode.cpp')
-rwxr-xr-x7zip/Archive/7z/7zDecode.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/7zip/Archive/7z/7zDecode.cpp b/7zip/Archive/7z/7zDecode.cpp
index e6dbeefd..2deffc12 100755
--- a/7zip/Archive/7z/7zDecode.cpp
+++ b/7zip/Archive/7z/7zDecode.cpp
@@ -1,4 +1,4 @@
-// Decode.cpp
+// 7zDecode.cpp
#include "StdAfx.h"
@@ -136,10 +136,10 @@ static bool AreBindInfoExEqual(const CBindInfoEx &a1, const CBindInfoEx &a2)
CDecoder::CDecoder(bool multiThread)
{
- _multiThread = true;
- #ifdef _ST_MODE
- _multiThread = multiThread;
+ #ifndef _ST_MODE
+ multiThread = true;
#endif
+ _multiThread = multiThread;
_bindInfoExPrevIsDefinded = false;
#ifndef EXCLUDE_COM
LoadMethodMap();