mirror of
https://git.code.sf.net/p/zint/code
synced 2025-12-23 21:07:05 +00: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:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user