Files
OpenEPaperLink/ESP32_AP-Flasher/src
Nick Waterton d5e19d20fa Fix buffer size truncation for non-8-aligned image dimensions (#561)
Integer division (w*h)/8 truncates when w*h is not a multiple of 8,
allocating one byte too few. spr2color then writes past the end of
the buffer, corrupting the heap. Use (w*h+7)/8 to round up correctly.

Triggered by any tag whose width*height is not divisible by 8.
2026-03-13 11:35:17 -07:00
..
2024-12-04 00:48:21 +01:00
2024-12-05 09:45:58 +01:00
2023-03-23 09:51:50 +01:00
2025-12-03 21:34:48 +01:00
2025-03-27 21:10:10 +01:00
2026-03-06 10:44:23 -08:00
2024-03-26 01:13:02 +01:00
2026-03-06 10:44:23 -08:00