mirror of
https://github.com/tmux/tmux.git
synced 2025-01-07 16:28:48 +00:00
Check started flag before looking for capability.
This commit is contained in:
parent
37b1600d9c
commit
e538bef757
4
tty.c
4
tty.c
@ -1905,10 +1905,10 @@ tty_set_selection(struct tty *tty, const char *buf, size_t len)
|
|||||||
char *encoded;
|
char *encoded;
|
||||||
size_t size;
|
size_t size;
|
||||||
|
|
||||||
if (!tty_term_has(tty->term, TTYC_MS))
|
|
||||||
return;
|
|
||||||
if (~tty->flags & TTY_STARTED)
|
if (~tty->flags & TTY_STARTED)
|
||||||
return;
|
return;
|
||||||
|
if (!tty_term_has(tty->term, TTYC_MS))
|
||||||
|
return;
|
||||||
|
|
||||||
size = 4 * ((len + 2) / 3) + 1; /* storage for base64 */
|
size = 4 * ((len + 2) / 3) + 1; /* storage for base64 */
|
||||||
encoded = xmalloc(size);
|
encoded = xmalloc(size);
|
||||||
|
Loading…
Reference in New Issue
Block a user