Avoid SIGSEGV on Code 128 input too long

This commit is contained in:
Robin Stuart 2017-07-26 11:44:47 +01:00
parent 24f175b6f6
commit e81a90bb58

View File

@ -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)) { if ((symbol->symbology == BARCODE_CODE128) || (symbol->symbology == BARCODE_CODE128B)) {
for (i = 0; i < in_length; i++) { for (i = 0; i < in_length; i++) {
if (local_source[i] == '\0') { 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_number = error_buffer;
} }
error_tag(symbol->errtxt, error_number); error_tag(symbol->errtxt, error_number);