mirror of
https://github.com/tmux/tmux.git
synced 2025-03-30 03:18:51 +00:00
Reduce len when moving past spaces in OSC 11 parameter.
This commit is contained in:
parent
af3ffa9c41
commit
fb42ae3071
4
input.c
4
input.c
@ -2460,8 +2460,10 @@ input_osc_parse_colour(const char *p)
|
|||||||
(1 - m) * (1 - k) * 255,
|
(1 - m) * (1 - k) * 255,
|
||||||
(1 - y) * (1 - k) * 255);
|
(1 - y) * (1 - k) * 255);
|
||||||
} else {
|
} else {
|
||||||
while (*p == ' ')
|
while (len != 0 && *p == ' ') {
|
||||||
p++;
|
p++;
|
||||||
|
len--;
|
||||||
|
}
|
||||||
while (len != 0 && p[len - 1] == ' ')
|
while (len != 0 && p[len - 1] == ' ')
|
||||||
len--;
|
len--;
|
||||||
copy = xstrndup(p, len);
|
copy = xstrndup(p, len);
|
||||||
|
Loading…
Reference in New Issue
Block a user