From a8fa0da1bfd90c9620253d122ab5dee42499132f Mon Sep 17 00:00:00 2001 From: Damien Zammit Date: Mon, 28 Oct 2024 08:09:05 +0000 Subject: xkb: Fix delete key in console Adding the missing NULL sentinel pointer allows delete key to function without crashing pc_kbd driver. Message-ID: <20241028080849.3196116-1-damien@zamaudio.com> --- console-client/xkb/xkb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console-client/xkb/xkb.c b/console-client/xkb/xkb.c index 31253f5c..8759c8bf 100644 --- a/console-client/xkb/xkb.c +++ b/console-client/xkb/xkb.c @@ -116,7 +116,7 @@ execute_action(keycode_t keycode) /* if CTRL+ALT+Delete is pressed notify the caller */ if (keysym == XKB_KEY_Delete && xkb_state_mod_names_are_active (state, XKB_STATE_MODS_EFFECTIVE, XKB_STATE_MATCH_ALL, XKB_MOD_NAME_CTRL, - XKB_MOD_NAME_ALT) > 0) + XKB_MOD_NAME_ALT, NULL) > 0) { console_exit (); return 1; -- cgit v1.2.3