示例#1
0
            public void Lzma2Enc_Destroy()
            {
                for (uint i = 0; i < mCoders.Length; i++)
                {
                    CLzma2EncInternal t = mCoders[i];
                    if (t.mEnc != null)
                    {
                        t.mEnc.LzmaEnc_Destroy(mAlloc, mAllocBig);
                        t.mEnc = null;
                    }
                }

#if !_7ZIP_ST
                mMtCoder.MtCoder_Destruct();
#endif

                IAlloc_FreeBytes(mAlloc, mOutBuf);
                IAlloc_FreeObject(mAlloc, this);
            }