1
0
mirror of https://git.code.sf.net/p/zint/code synced 2026-01-27 13:55:57 +00:00

CODE128: fix not handling FNC1 at end of data when in manual

switching mode or any FNC1 after manual C mode selected and no
  other non-C data - found by fuzz test "fuzz_data" - 2nd ever
  trophy!
qr.h: fix typo (props https://github.com/crate-ci/typos)
This commit is contained in:
gitlost
2026-01-12 20:38:15 +00:00
parent a718c79237
commit 6e533c7a0a
8 changed files with 158 additions and 41 deletions

View File

@@ -336,7 +336,7 @@ static const unsigned int rmqr_format_info_right[64] = {
};
/* Pre-calculated QR and MicroQR mask tables, generated by "backend/tools/gen_qr_masks.php",
based on lowest common periodicy of the masks (6x12):
based on lowest common periodicity of the masks (6x12):
QR: 000: 2x2, 001: 1x2, 010: 3x1, 011: 3x3, 100: 6x4, 101: 6x6, 110: 6x6, 111: 6x6
MicroQR: 00 (001), 01 (100), 10 (110), 11 (111)
Taken from Barcode Writer in Pure PostScript (BWIPP)