Fix of by one error in maxi_text_process

This commit is contained in:
Boris Zentner 2017-01-25 20:06:33 +01:00 committed by Robin Stuart
parent ecb10e6b7d
commit 319c7791bc

View File

@ -417,7 +417,7 @@ int maxi_text_process(int mode, unsigned char source[], int length, int eci) {
i++; i++;
} }
i++; i++;
} while (i < 145); } while (i < 144);
/* Number compression has not been forgotten! - It's handled below */ /* Number compression has not been forgotten! - It's handled below */
i = 0; i = 0;