mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 17:03:02 +00:00
[HHPCOMP:CHMC] chmc_crunch_lzx(): Disable a dead check (#4880)
CORE-18642
This commit is contained in:
parent
04b2d35f5b
commit
770b3a3ce5
1 changed files with 2 additions and 0 deletions
|
@ -939,10 +939,12 @@ int chmc_crunch_lzx(struct chmcFile *chm, int sect_id)
|
||||||
|
|
||||||
assert(chm);
|
assert(chm);
|
||||||
|
|
||||||
|
#ifndef __REACTOS__
|
||||||
if ((wsize_code < 15) || (wsize_code > 21)) {
|
if ((wsize_code < 15) || (wsize_code > 21)) {
|
||||||
fprintf(stderr, "window size must be between 15 and 21 inclusive\n");
|
fprintf(stderr, "window size must be between 15 and 21 inclusive\n");
|
||||||
return CHMC_EINVAL;
|
return CHMC_EINVAL;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
lzx_info.chm = chm;
|
lzx_info.chm = chm;
|
||||||
lzx_info.section = chm->sections[sect_id];
|
lzx_info.section = chm->sections[sect_id];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue