mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 16:07:09 -06:00
9.38
This commit is contained in:
committed by
Kornel Lesiński
parent
7e021179cd
commit
0713a3ab80
@@ -63,7 +63,7 @@ public:
|
||||
}
|
||||
|
||||
|
||||
HRESULT CDecoder::SetToPos(UInt64 pos, ICompressProgressInfo *progress); // for solid
|
||||
HRESULT SetToPos(UInt64 pos, ICompressProgressInfo *progress); // for solid
|
||||
HRESULT Decode(CByteBuffer *outBuf, bool unpackSizeDefined, UInt32 unpackSize,
|
||||
ISequentialOutStream *realOutStream, ICompressProgressInfo *progress,
|
||||
UInt32 &packSizeRes, UInt32 &unpackSizeRes);
|
||||
|
||||
@@ -582,13 +582,13 @@ STDMETHODIMP CHandler::Extract(const UInt32 *indices, UInt32 numItems,
|
||||
|
||||
if (!dataError)
|
||||
{
|
||||
UInt32 unpackSize = 0;
|
||||
bool unpackSize_Defined = false;
|
||||
// UInt32 unpackSize = 0;
|
||||
// bool unpackSize_Defined = false;
|
||||
bool writeToTemp1 = writeToTemp;
|
||||
if (item.IsUninstaller)
|
||||
{
|
||||
unpackSize = item.PatchSize;
|
||||
unpackSize_Defined = true;
|
||||
// unpackSize = item.PatchSize;
|
||||
// unpackSize_Defined = true;
|
||||
if (!readFromTemp)
|
||||
writeToTemp = true;
|
||||
writeToTemp1 = writeToTemp;
|
||||
|
||||
@@ -3777,7 +3777,7 @@ HRESULT CInArchive::ReadEntries(const CBlockHeader &bh)
|
||||
|
||||
for (UInt32 j = i - 1; j >= kkk + 3; j--)
|
||||
{
|
||||
const Byte *pCmd = p - kCmdSize * (kkk - j);
|
||||
const Byte *pCmd = p + kCmdSize * (j - kkk);
|
||||
AddParam(GET_CMD_PARAM(pCmd, 0));
|
||||
}
|
||||
NewLine();
|
||||
|
||||
Reference in New Issue
Block a user