mirror of
https://git.code.sf.net/p/zint/code
synced 2025-12-20 11:27:09 +00:00
Correct bizarre use of isX12()
Bug spotted by Milton Neal
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user