2008-07-13 Pavel Roskin <proski@gnu.org>
* lib/LzmaEnc.c (LzmaEnc_SetProps): Fix warning about comparison between signed and unsigned. (LzmaEnc_Finish): Fix warning about an unused parameter.
This commit is contained in:
parent
aa24b516a2
commit
d4e2dad356
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2008-07-13 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
* lib/LzmaEnc.c (LzmaEnc_SetProps): Fix warning about comparison
|
||||||
|
between signed and unsigned.
|
||||||
|
(LzmaEnc_Finish): Fix warning about an unused parameter.
|
||||||
|
|
||||||
2008-07-13 Bean <bean123ch@gmail.com>
|
2008-07-13 Bean <bean123ch@gmail.com>
|
||||||
|
|
||||||
* Makefile.in (enable_lzo): New rule.
|
* Makefile.in (enable_lzo): New rule.
|
||||||
|
|
|
@ -431,7 +431,7 @@ SRes LzmaEnc_SetProps(CLzmaEncHandle pp, const CLzmaEncProps *props2)
|
||||||
LzmaEncProps_Normalize(&props);
|
LzmaEncProps_Normalize(&props);
|
||||||
|
|
||||||
if (props.lc > LZMA_LC_MAX || props.lp > LZMA_LP_MAX || props.pb > LZMA_PB_MAX ||
|
if (props.lc > LZMA_LC_MAX || props.lp > LZMA_LP_MAX || props.pb > LZMA_PB_MAX ||
|
||||||
props.dictSize > (1 << kDicLogSizeMaxCompress) || props.dictSize > (1 << 30))
|
props.dictSize > (1U << kDicLogSizeMaxCompress) || props.dictSize > (1 << 30))
|
||||||
return SZ_ERROR_PARAM;
|
return SZ_ERROR_PARAM;
|
||||||
p->dictSize = props.dictSize;
|
p->dictSize = props.dictSize;
|
||||||
p->matchFinderCycles = props.mc;
|
p->matchFinderCycles = props.mc;
|
||||||
|
@ -2170,6 +2170,8 @@ void LzmaEnc_Finish(CLzmaEncHandle pp)
|
||||||
CLzmaEnc *p = (CLzmaEnc *)pp;
|
CLzmaEnc *p = (CLzmaEnc *)pp;
|
||||||
if (p->mtMode)
|
if (p->mtMode)
|
||||||
MatchFinderMt_ReleaseStream(&p->matchFinderMt);
|
MatchFinderMt_ReleaseStream(&p->matchFinderMt);
|
||||||
|
#else
|
||||||
|
(void)pp;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue