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>2010-05-01 13:38:16 +0400
committerOctaneSnail <os@v12pwr.com>2010-05-01 13:38:16 +0400
commitec6e3c3c78c3ea32600dcde4a3ce48d1291315e5 (patch)
tree9a53cfc6be111f75949520a47332a8db60809ec9
parentc92207921403ffd1a34994cb798343f738b97cc7 (diff)
Remove EARC_NEXT_VOLUME check, it's missing sometimes.
-rw-r--r--RFS.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/RFS.cpp b/RFS.cpp
index 61d0b67..387dd97 100644
--- a/RFS.cpp
+++ b/RFS.cpp
@@ -398,8 +398,8 @@ int CRARFileSource::ScanArchive (wchar_t *archive_name, List<File> *file_list, i
if (rh.ch.type == HEADER_TYPE_END)
{
// TODO: Verify that the volume number in the header matches our volume counter.
- if (!(rh.ch.flags & EARC_NEXT_VOLUME))
- multi_volume = false;
+
+ // Check for EARC_NEXT_VOLUME removed as this flag is missing on some archives.
break;
}