summary refs log tree commit diff
path: root/bin/gfxx.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/gfxx.c')
-rw-r--r--bin/gfxx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gfxx.c b/bin/gfxx.c
index 674b68c9..6777c668 100644
--- a/bin/gfxx.c
+++ b/bin/gfxx.c
@@ -271,7 +271,7 @@ static void drawBits(struct Iter *it) {
 
 static void drawBytes(struct Iter *it) {
     uint8_t bytes = (BITS_TOTAL + 7) / 8;
-    for (size_t i = offset; i < size; i += bytes) {
+    for (size_t i = offset; i + bytes <= size; i += bytes) {
         uint32_t n = 0;
         for (size_t b = 0; b < bytes; ++b) {
             n <<= 8;