mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: MultiArc - Incorrect file size for files > 2 Gb
This commit is contained in:
parent
3aabf2f142
commit
028bf56a50
1 changed files with 2 additions and 2 deletions
|
|
@ -210,9 +210,9 @@ begin
|
|||
if FNamePos.Index = FFormatIndex then
|
||||
FArchiveItem.FileName := FGetFileName(Trim(GetKeyValue(str, FNamePos)));
|
||||
if FUnpSizePos.Index = FFormatIndex then
|
||||
FArchiveItem.UnpSize := StrToIntDef(Trim(GetKeyValue(str, FUnpSizePos)), 0);
|
||||
FArchiveItem.UnpSize := StrToInt64Def(Trim(GetKeyValue(str, FUnpSizePos)), 0);
|
||||
if FPackSizePos.Index = FFormatIndex then
|
||||
FArchiveItem.PackSize := StrToIntDef(Trim(GetKeyValue(str, FPackSizePos)), 0);
|
||||
FArchiveItem.PackSize := StrToInt64Def(Trim(GetKeyValue(str, FPackSizePos)), 0);
|
||||
if FYearPos.Index = FFormatIndex then
|
||||
FArchiveItem.Year := YearShortToLong(StrToIntDef(Trim(GetKeyValue(str, FYearPos)), 0));
|
||||
if FMonthPos.Index = FFormatIndex then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue