mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-27 13:34:19 -04:00
Fix (simple) QR Code bug
This commit is contained in:
parent
521d7e119b
commit
b005aea25a
2 changed files with 1 additions and 6 deletions
|
@ -71,11 +71,6 @@ int qr_code(struct zint_symbol *symbol, unsigned char source[])
|
|||
int errno = 0;
|
||||
int i, j;
|
||||
|
||||
if(ustrlen(source) > 5254) {
|
||||
strcpy(symbol->errtxt, "input data too long [580]");
|
||||
return ERROR_TOO_LONG;
|
||||
}
|
||||
|
||||
code = encode(symbol->option_1, symbol->option_2, source);
|
||||
if(code == NULL) {
|
||||
strcpy(symbol->errtxt, "libqrencode failed to encode the input data [581]");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue