mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Fix of by one error in maxi_text_process
This commit is contained in:
parent
ecb10e6b7d
commit
319c7791bc
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user