Merge branch 'lzx-extra-bits-bounds' of https://github.com/zmedico/calibre

This commit is contained in:
Kovid Goyal 2017-04-24 07:53:06 +05:30
commit b3807e2f50

View File

@ -357,11 +357,12 @@ static unsigned char extra_bits[51];
static void lzxd_static_init(void) {
int i, j;
for (i = 0, j = 0; i < 51; i += 2) {
for (i = 0, j = 0; i < 50; i += 2) {
extra_bits[i] = j; /* 0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7... */
extra_bits[i+1] = j;
if ((i != 0) && (j < 17)) j++; /* 0,0,1,2,3,4...15,16,17,17,17,17... */
}
extra_bits[50] = 17;
for (i = 0, j = 0; i < 51; i++) {
position_base[i] = j; /* 0,1,2,3,4,6,8,12,16,24,32,... */