mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-18 00:54:36 -04:00
Avoid SIGSEGV on Code 128 input too long
This commit is contained in:
parent
24f175b6f6
commit
e81a90bb58
1 changed files with 9 additions and 11 deletions
|
@ -1060,6 +1060,7 @@ int ZBarcode_Encode(struct zint_symbol *symbol, const unsigned char *source,int
|
|||
|
||||
}
|
||||
|
||||
if (error_number == 0) {
|
||||
if ((symbol->symbology == BARCODE_CODE128) || (symbol->symbology == BARCODE_CODE128B)) {
|
||||
for (i = 0; i < in_length; i++) {
|
||||
if (local_source[i] == '\0') {
|
||||
|
@ -1069,9 +1070,6 @@ int ZBarcode_Encode(struct zint_symbol *symbol, const unsigned char *source,int
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (error_number == 0) {
|
||||
|
||||
error_number = error_buffer;
|
||||
}
|
||||
error_tag(symbol->errtxt, error_number);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue