diff options
author | Ladislav <Zezula> | 2014-01-04 17:05:29 +0100 |
---|---|---|
committer | Ladislav <Zezula> | 2014-01-04 17:05:29 +0100 |
commit | 8bf322b6117a99136d978c192f845c45efe47efa (patch) | |
tree | e95baf4cba38d7caf849b56410cd8bfda922ccd0 /src/SBaseFileTable.cpp | |
parent | 6cd009bc7cb60b4000e2267c7d100a3f0d9a42a0 (diff) |
+ Minor fix
Diffstat (limited to 'src/SBaseFileTable.cpp')
-rw-r--r-- | src/SBaseFileTable.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/SBaseFileTable.cpp b/src/SBaseFileTable.cpp index 54b66c4..417a44b 100644 --- a/src/SBaseFileTable.cpp +++ b/src/SBaseFileTable.cpp @@ -267,11 +267,7 @@ static ULONGLONG DetermineArchiveSize_V1_V2( if(pHeader->dwBlockTablePos < pHeader->dwArchiveSize) { // If the block table end matches the archive size, we trust the archive size - if(pHeader->dwBlockTablePos + (pHeader->dwBlockTableSize * sizeof(TMPQBlock)) == pHeader->dwArchiveSize) - return pHeader->dwArchiveSize; - - // If both block table and archive size seem to be out of the file size - if(pHeader->dwBlockTablePos > FileSize && pHeader->dwArchiveSize > FileSize) + if((pHeader->dwArchiveSize - pHeader->dwBlockTablePos) <= (pHeader->dwBlockTableSize * sizeof(TMPQBlock))) return pHeader->dwArchiveSize; // If the archive size in the header is less than real file size @@ -435,7 +431,7 @@ int ConvertMpqHeaderToFormat4( if(pHeader->HiBlockTablePos64 != 0) { // BlockTableSize64 may be less than TblSize * sizeof(TMPQBlock). - // That means that the hi-block table is compressed. + // That means that the block table is compressed. pHeader->BlockTableSize64 = pHeader->HiBlockTablePos64 - BlockTablePos64; assert(pHeader->BlockTableSize64 <= (pHeader->dwBlockTableSize * sizeof(TMPQBlock))); |