mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-12 22:11:35 -06:00
Update to 7-Zip Version 21.07
See: https://sourceforge.net/p/sevenzip/discussion/45797/thread/0a7b47970b/
This commit is contained in:
@@ -1887,23 +1887,23 @@ STDMETHODIMP CAgent::GetArcProp(UInt32 level, PROPID propID, PROPVARIANT *value)
|
||||
break;
|
||||
case kpidErrorFlags:
|
||||
{
|
||||
UInt32 flags = arc.ErrorInfo.GetErrorFlags();
|
||||
const UInt32 flags = arc.ErrorInfo.GetErrorFlags();
|
||||
if (flags != 0)
|
||||
prop = flags;
|
||||
break;
|
||||
}
|
||||
case kpidWarningFlags:
|
||||
{
|
||||
UInt32 flags = arc.ErrorInfo.GetWarningFlags();
|
||||
const UInt32 flags = arc.ErrorInfo.GetWarningFlags();
|
||||
if (flags != 0)
|
||||
prop = flags;
|
||||
break;
|
||||
}
|
||||
case kpidOffset:
|
||||
{
|
||||
Int64 v = arc.GetGlobalOffset();
|
||||
const Int64 v = arc.GetGlobalOffset();
|
||||
if (v != 0)
|
||||
prop = v;
|
||||
prop.Set_Int64(v);
|
||||
break;
|
||||
}
|
||||
case kpidTailSize:
|
||||
|
||||
Reference in New Issue
Block a user