mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 08:07:09 -06:00
Update to 7-Zip Version 18.05
This commit is contained in:
@@ -94,7 +94,9 @@ static bool ParseInt64(const char *p, Int64 &val)
|
||||
|
||||
static bool ParseInt64_MTime(const char *p, Int64 &val)
|
||||
{
|
||||
// rare case tar contains spaces instead of MTime
|
||||
// rare case tar : ZEROs in Docker-Windows TARs
|
||||
// rare case tar : spaces
|
||||
if (GetUi32(p) != 0)
|
||||
for (unsigned i = 0; i < 12; i++)
|
||||
if (p[i] != ' ')
|
||||
return ParseInt64(p, val);
|
||||
|
||||
Reference in New Issue
Block a user