summaryrefslogtreecommitdiffstats
path: root/tty-keys.c
diff options
context:
space:
mode:
authornicm <nicm>2015-11-14 10:56:31 +0000
committernicm <nicm>2015-11-14 10:56:31 +0000
commit64333e3ef89047d1c09cdc5053af647dbd8344da (patch)
tree99b3efed938dd8499c791ce04830ec738b87041c /tty-keys.c
parentc56b81a2ce815f6d289232f20bb6e07cfd0e36ec (diff)
Be more strict about invalid UTF-8.
Diffstat (limited to 'tty-keys.c')
-rw-r--r--tty-keys.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/tty-keys.c b/tty-keys.c
index 6a64ef15..4bdc061a 100644
--- a/tty-keys.c
+++ b/tty-keys.c
@@ -472,7 +472,7 @@ tty_keys_next(struct tty *tty)
const char *buf;
size_t len, size;
cc_t bspace;
- int delay, expired = 0;
+ int delay, expired = 0, more;
key_code key;
struct utf8_data ud;
u_int i;
@@ -547,7 +547,9 @@ first_key:
goto partial_key;
}
for (i = 1; i < size; i++)
- utf8_append(&ud, (u_char)buf[i]);
+ more = utf8_append(&ud, (u_char)buf[i]);
+ if (more != 0)
+ goto discard_key;
key = utf8_combine(&ud);
log_debug("UTF-8 key %.*s %#llx", (int)size, buf, key);
goto complete_key;
@@ -653,6 +655,7 @@ tty_keys_mouse(struct tty *tty, const char *buf, size_t len, size_t *size)
struct utf8_data ud;
u_int i, value, x, y, b, sgr_b;
u_char sgr_type, c;
+ int more;
/*
* Standard mouse sequences are \033[M followed by three characters
@@ -699,7 +702,9 @@ tty_keys_mouse(struct tty *tty, const char *buf, size_t len, size_t *size)
(*size)++;
if (len <= *size)
return (1);
- utf8_append(&ud, buf[*size]);
+ more = utf8_append(&ud, buf[*size]);
+ if (more != 0)
+ return (-1);
value = utf8_combine(&ud);
} else
value = (u_char)buf[*size];