diff options
author | Isaac Freund <ifreund@ifreund.xyz> | 2021-04-22 00:37:03 +0200 |
---|---|---|
committer | Ran Benita <ran@unusedvar.com> | 2021-04-25 12:25:58 +0300 |
commit | 68dddd4132521dc72133a4f0010d0d07ec30a16e (patch) | |
tree | 3d2d8f6aa75a0f3b903cd0390f56b3c0e858e7a0 /test | |
parent | 1557668364496ecd724d8f80f915e0c9d6be803e (diff) | |
download | libxkbcommon-68dddd4132521dc72133a4f0010d0d07ec30a16e.tar.gz libxkbcommon-68dddd4132521dc72133a4f0010d0d07ec30a16e.tar.bz2 libxkbcommon-68dddd4132521dc72133a4f0010d0d07ec30a16e.zip |
keysym: fix underflow in binary searches
This is hit when passing an empty string and XKB_KEYSYM_CASE_INSENSITIVE
to xkb_keysym_from_name currently if `(lo + hi) / 2` is 0 and `cmp < 0`,
causing mid to underflow and the the array access into name_to_keysym on
the next iteration of the loop to be out of bounds .
We *would* use ssize_t here as it is the appropriate type, but windows
unfortunately does not define it.
Diffstat (limited to 'test')
-rw-r--r-- | test/keysym.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/keysym.c b/test/keysym.c index 0c3ba9f..2c98c24 100644 --- a/test/keysym.c +++ b/test/keysym.c @@ -189,6 +189,9 @@ main(void) assert(test_casestring("Thorn", 0x00fe)); assert(test_casestring("thorn", 0x00fe)); + assert(test_string("", XKB_KEY_NoSymbol)); + assert(test_casestring("", XKB_KEY_NoSymbol)); + assert(test_utf8(XKB_KEY_y, "y")); assert(test_utf8(XKB_KEY_u, "u")); assert(test_utf8(XKB_KEY_m, "m")); |