diff options
author | Damien Zammit <damien@zamaudio.com> | 2024-10-28 08:09:05 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-10-28 21:54:40 +0100 |
commit | a8fa0da1bfd90c9620253d122ab5dee42499132f (patch) | |
tree | 5c959a7ee5f0a62cec9440df7b458e2ab3917111 /console-client | |
parent | b52406be3b9cbc30b1d03fef3e8e4513f55c08d6 (diff) | |
download | hurd-a8fa0da1bfd90c9620253d122ab5dee42499132f.tar.gz hurd-a8fa0da1bfd90c9620253d122ab5dee42499132f.tar.bz2 hurd-a8fa0da1bfd90c9620253d122ab5dee42499132f.zip |
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>
Diffstat (limited to 'console-client')
-rw-r--r-- | console-client/xkb/xkb.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |