mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Use passed length instead of \0 to detect source string length
This commit is contained in:
parent
a0f703f7de
commit
5b92413085
@ -164,7 +164,7 @@ int gs1_verify(struct zint_symbol *symbol, unsigned char source[], const unsigne
|
||||
data_length[i] = 0;
|
||||
do {
|
||||
data_length[i]++;
|
||||
} while ((source[data_location[i] + data_length[i] - 1] != '[') && (source[data_location[i] + data_length[i] - 1] != '\0'));
|
||||
} while ((source[data_location[i] + data_length[i] - 1] != '[') && (data_location[i] + data_length[i] <= src_len));
|
||||
data_length[i]--;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user