mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-28 05:54:19 -04:00
Another QR Code bugfix
QR Code should encode all of the given data, never leave off the last digit!
This commit is contained in:
parent
964a178afe
commit
ae44cf2d33
1 changed files with 1 additions and 1 deletions
|
@ -393,7 +393,7 @@ void qr_binary(int datastream[], int version, int target_binlen, char mode[], in
|
|||
}
|
||||
|
||||
position += short_data_block_length;
|
||||
} while (position < length - 1) ;
|
||||
} while (position < length) ;
|
||||
|
||||
/* Terminator */
|
||||
concat(binary, "0000");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue