mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Correct bizarre use of isX12()
Bug spotted by Milton Neal
This commit is contained in:
parent
118caf10ea
commit
804ca24aca
@ -274,7 +274,7 @@ static int p_r_6_2_1(const unsigned char inputData[], const int position, const
|
|||||||
|
|
||||||
for (i = position; i < sourcelen; i++) {
|
for (i = position; i < sourcelen; i++) {
|
||||||
if (nonX12Position == 0) {
|
if (nonX12Position == 0) {
|
||||||
if (isX12(i) == 1) {
|
if (isX12(inputData[i]) != 1) {
|
||||||
nonX12Position = i;
|
nonX12Position = i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user