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

github.com/mpc-hc/rarfilesource.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOctaneSnail <os@v12pwr.com>2008-12-13 21:54:51 +0300
committerOctaneSnail <os@v12pwr.com>2008-12-13 22:54:08 +0300
commit0978b5dd252cfdfed9813af201d634aa9e79d949 (patch)
tree9b1e7b457c1ddca08146682a7a2f1502d836deae /Utils.cpp
parent75ed77126304e38d098fc4f5845e552a48999734 (diff)
Fix handling of archives and media files larger than 4 gigabytes.
Based on a patch from OV2.
Diffstat (limited to 'Utils.cpp')
-rw-r--r--Utils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Utils.cpp b/Utils.cpp
index d068416..7e84604 100644
--- a/Utils.cpp
+++ b/Utils.cpp
@@ -95,8 +95,8 @@ void LogHeader (rar_header_t *rh)
int i;
WORD flags = rh->ch.flags;
- DbgLog ((LOG_TRACE, 2, L"Header CRC %04x TYPE %02x FLAGS %04x SIZE %08x",
- rh->ch.crc, rh->ch.type, rh->ch.flags, rh->ch.size));
+ DbgLog ((LOG_TRACE, 2, L"Header CRC %04x TYPE %02x FLAGS %04x SIZE %08x %08x",
+ rh->ch.crc, rh->ch.type, rh->ch.flags, rh->ch.size.HighPart, rh->ch.size.LowPart));
switch (rh->ch.type)
{