From 5afdcdd46043481675a48891a071dbb1fea1ab4c Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Tue, 24 Sep 2019 23:40:38 -0500 Subject: Bug fix icon.c crashes with negative icon index The index for Icon_NOICON is -1 which is caught properly as is icon > Icon_Last_Themeable But if you pass an index lower than Icon_NOICON screen_put_iconxy() tries to read memory prior to the iconset resulting in a crash Change-Id: I415e650932d65214d883a1595e22261f22e776b6 --- apps/player/icons.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/player/icons.c') diff --git a/apps/player/icons.c b/apps/player/icons.c index 0d160bc967..dc804560f2 100644 --- a/apps/player/icons.c +++ b/apps/player/icons.c @@ -84,7 +84,7 @@ static const unsigned short icons[Icon_Last_Themeable] = { extern void screen_put_iconxy(struct screen * screen, int x, int y, enum themable_icons icon) { - if (icon == Icon_NOICON) + if (icon <= Icon_NOICON) screen->putchar(x, y, ' '); else if (icon >= Icon_Last_Themeable) screen->putchar(x, y, old_Icon_Unknown); -- cgit v1.2.3