mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-13 06:34:32 -04:00
Fix of by one error in maxi_text_process
This commit is contained in:
parent
ecb10e6b7d
commit
319c7791bc
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue