List.cpp (p7zip_15.14.1_src_all) | : | List.cpp (p7zip_16.02_src_all) | ||
---|---|---|---|---|
skipping to change at line 904 | skipping to change at line 904 | |||
ErrorInfo_Print(so, er); | ErrorInfo_Print(so, er); | |||
Int64 offset = arc.GetGlobalOffset(); | Int64 offset = arc.GetGlobalOffset(); | |||
if (offset != 0) | if (offset != 0) | |||
PrintPropNameAndNumber_Signed(so, kpidOffset, offset); | PrintPropNameAndNumber_Signed(so, kpidOffset, offset); | |||
IInArchive *archive = arc.Archive; | IInArchive *archive = arc.Archive; | |||
RINOK(PrintArcProp(so, archive, kpidPhySize, NULL)); | RINOK(PrintArcProp(so, archive, kpidPhySize, NULL)); | |||
if (er.TailSize != 0) | if (er.TailSize != 0) | |||
PrintPropNameAndNumber(so, kpidTailSize, er.TailSize); | PrintPropNameAndNumber(so, kpidTailSize, er.TailSize); | |||
UInt32 numProps; | ||||
RINOK(archive->GetNumberOfArchiveProperties(&numProps)); | ||||
{ | { | |||
UInt32 numProps; | ||||
RINOK(archive->GetNumberOfArchiveProperties(&numProps)); | ||||
for (UInt32 j = 0; j < numProps; j++) | for (UInt32 j = 0; j < numProps; j++) | |||
{ | { | |||
CMyComBSTR name; | CMyComBSTR name; | |||
PROPID propID; | PROPID propID; | |||
VARTYPE vt; | VARTYPE vt; | |||
RINOK(archive->GetArchivePropertyInfo(j, &name, &propID, &vt)); | RINOK(archive->GetArchivePropertyInfo(j, &name, &propID, &vt)); | |||
RINOK(PrintArcProp(so, archive, propID, name)); | RINOK(PrintArcProp(so, archive, propID, name)); | |||
} | } | |||
} | } | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added |