mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-24 20:14:28 -04:00
Correct processing of escape char mode
This commit is contained in:
parent
a91e4fab79
commit
ddce98a1bb
2 changed files with 3 additions and 2 deletions
|
@ -1079,7 +1079,8 @@ int ZBarcode_Encode(struct zint_symbol *symbol, const unsigned char *source, int
|
|||
local_source[in_length] = '\0';
|
||||
}
|
||||
|
||||
if (symbol->input_mode &= ESCAPE_MODE) {
|
||||
if (symbol->input_mode & ESCAPE_MODE) {
|
||||
printf("Esc process\n");
|
||||
error_number = escape_char_process(symbol, local_source, &in_length);
|
||||
if (error_number != 0) {
|
||||
return error_number;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue