mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 21:56:57 +00:00
Ignore OSC if the first argument is not properly terminated.
This commit is contained in:
2
input.c
2
input.c
@ -2292,6 +2292,8 @@ input_exit_osc(struct input_ctx *ictx)
|
|||||||
option = 0;
|
option = 0;
|
||||||
while (*p >= '0' && *p <= '9')
|
while (*p >= '0' && *p <= '9')
|
||||||
option = option * 10 + *p++ - '0';
|
option = option * 10 + *p++ - '0';
|
||||||
|
if (*p != ';' && *p != '\0')
|
||||||
|
return;
|
||||||
if (*p == ';')
|
if (*p == ';')
|
||||||
p++;
|
p++;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user