aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tty-keys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tty-keys.c b/tty-keys.c
index a0f608c0..068c502f 100644
--- a/tty-keys.c
+++ b/tty-keys.c
@@ -624,7 +624,7 @@ first_key:
* If not a complete key, look for key with an escape prefix (meta
* modifier).
*/
- if (*buf == '\033') {
+ if (*buf == '\033' && len > 1) {
/* Look for a key without the escape. */
n = tty_keys_next1(tty, buf + 1, len - 1, &key, &size, expired);
if (n == 0) { /* found */