mirror of
https://git.code.sf.net/p/zint/code
synced 2025-12-19 10:57:07 +00:00
Avoid SIGSEGV on Code 128 input too long
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user