]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid crashes under 'which-key-mode'
authorEli Zaretskii <eliz@gnu.org>
Tue, 25 Jul 2023 17:38:01 +0000 (20:38 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 25 Jul 2023 17:38:01 +0000 (20:38 +0300)
* src/keyboard.c (Fthis_single_command_keys): Don't allow calls to
Fvector with negative first argument.  (Bug#64857)

src/keyboard.c

index 41cda2e65de5d7b4b1893be02c3d34485043261a..2e850b74b9b373ae2650334c99dd693f84b0190b 100644 (file)
@@ -11138,8 +11138,8 @@ the command loop or by `read-key-sequence'.
 The value is always a vector.  */)
   (void)
 {
-  return Fvector (this_command_key_count
-                 - this_single_command_key_start,
+  ptrdiff_t nkeys = this_command_key_count - this_single_command_key_start;
+  return Fvector (nkeys < 0 ? 0 : nkeys,
                  (XVECTOR (this_command_keys)->contents
                   + this_single_command_key_start));
 }