mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-02-01 10:24:11 -06:00
4.27 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
31e7b924e8
commit
d66cf2fcf3
@@ -3,6 +3,7 @@
|
||||
#include "StdAfx.h"
|
||||
|
||||
#include "../../../Common/Defs.h"
|
||||
#include "../../Common/StreamUtils.h"
|
||||
|
||||
#include "LZMAEncoder.h"
|
||||
|
||||
@@ -498,7 +499,7 @@ STDMETHODIMP CEncoder::WriteCoderProperties(ISequentialOutStream *outStream)
|
||||
properties[0] = (_posStateBits * 5 + _numLiteralPosStateBits) * 9 + _numLiteralContextBits;
|
||||
for (int i = 0; i < 4; i++)
|
||||
properties[1 + i] = Byte(_dictionarySize >> (8 * i));
|
||||
return outStream->Write(properties, kPropSize, NULL);
|
||||
return WriteStream(outStream, properties, kPropSize, NULL);
|
||||
}
|
||||
|
||||
STDMETHODIMP CEncoder::SetOutStream(ISequentialOutStream *outStream)
|
||||
|
||||
Reference in New Issue
Block a user