Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2014-08-06 20:43:53 +0400
committerXhmikosR <xhmikosr@gmail.com>2014-08-19 21:59:22 +0400
commitb56235a26018a98ac6a9de549dd96d9c49f2703b (patch)
tree31d5425eefd0069a8654702ee2b9e3a9f3047960 /src/thirdparty/unrar/unpack30.cpp
parent1918fb5fee04de2df3acb884d20896739b8f9e18 (diff)
Update unrar to v5.1.7.
Diffstat (limited to 'src/thirdparty/unrar/unpack30.cpp')
-rw-r--r--src/thirdparty/unrar/unpack30.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thirdparty/unrar/unpack30.cpp b/src/thirdparty/unrar/unpack30.cpp
index 33fb27aa4..980df0244 100644
--- a/src/thirdparty/unrar/unpack30.cpp
+++ b/src/thirdparty/unrar/unpack30.cpp
@@ -798,13 +798,13 @@ bool Unpack::ReadTables30()
}
TablesRead=true;
if (Inp.InAddr>ReadTop)
- return(false);
+ return false;
MakeDecodeTables(&Table[0],&BlockTables.LD,NC30);
MakeDecodeTables(&Table[NC30],&BlockTables.DD,DC30);
MakeDecodeTables(&Table[NC30+DC30],&BlockTables.LDD,LDC30);
MakeDecodeTables(&Table[NC30+DC30+LDC30],&BlockTables.RD,RC30);
memcpy(UnpOldTable,Table,sizeof(UnpOldTable));
- return(true);
+ return true;
}