From cc32e9bc9b980457641746878a3abf95f794d5fb Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 25 Oct 2021 14:01:55 -0400 Subject: Bounds check color indexes --- bin/shotty.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/shotty.l') diff --git a/bin/shotty.l b/bin/shotty.l index c33b1f8b..c676d15b 100644 --- a/bin/shotty.l +++ b/bin/shotty.l @@ -498,7 +498,7 @@ static void span(const struct Cell *prev, const struct Cell *cell) { if (attr & Bold) printf("font-weight:bold;"); if (attr & Italic) printf("font-style:italic;"); if (attr & Underline) printf("text-decoration:underline;"); - if (colors) { + if (colors && bg < 256 && fg < 256) { printf( "background-color:#%06X;color:#%06X;", Palette[bg], Palette[fg] -- cgit 1.4.1