From 319c7791bcf8a522ada683eeb2799822aeb117db Mon Sep 17 00:00:00 2001 From: Boris Zentner Date: Wed, 25 Jan 2017 20:06:33 +0100 Subject: [PATCH] Fix of by one error in maxi_text_process --- backend/maxicode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/maxicode.c b/backend/maxicode.c index a7687170..c1952a20 100644 --- a/backend/maxicode.c +++ b/backend/maxicode.c @@ -417,7 +417,7 @@ int maxi_text_process(int mode, unsigned char source[], int length, int eci) { i++; } i++; - } while (i < 145); + } while (i < 144); /* Number compression has not been forgotten! - It's handled below */ i = 0;