Commit 161c6091 authored by Dmitry Torokhov's avatar Dmitry Torokhov
Browse files

Input: keyboard - fix potential out of bound access to key_map

parent df08ef27
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1249,7 +1249,7 @@ static void kbd_keycode(unsigned int keycode, int down, int hw_raw)
		return;
	}

	if (keycode > NR_KEYS)
	if (keycode >= NR_KEYS)
		if (keycode >= KEY_BRL_DOT1 && keycode <= KEY_BRL_DOT8)
			keysym = K(KT_BRL, keycode - KEY_BRL_DOT1 + 1);
		else