aboutsummaryrefslogtreecommitdiff
path: root/tty.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2018-11-19 14:02:41 +0000
committerThomas Adam <thomas@xteddy.org>2018-11-19 14:02:41 +0000
commitefd01f3bfd84d4a692cfbf746517f891d4ecaa27 (patch)
treeb2ed5d4a20750075b483711c63493dffc81d6348 /tty.c
parenta7da2357a512d5a325aa12ca0d544df85530a4d3 (diff)
parent749f67b7d801eed03345fef9c04206fbd079c3cb (diff)
downloadrtmux-efd01f3bfd84d4a692cfbf746517f891d4ecaa27.tar.gz
rtmux-efd01f3bfd84d4a692cfbf746517f891d4ecaa27.tar.bz2
rtmux-efd01f3bfd84d4a692cfbf746517f891d4ecaa27.zip
Merge branch 'obsd-master'
Diffstat (limited to 'tty.c')
-rw-r--r--tty.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tty.c b/tty.c
index 6b63aa3b..df47c972 100644
--- a/tty.c
+++ b/tty.c
@@ -258,9 +258,13 @@ tty_open(struct tty *tty, char **cause)
event_set(&tty->event_in, tty->fd, EV_PERSIST|EV_READ,
tty_read_callback, tty);
tty->in = evbuffer_new();
+ if (tty->in == NULL)
+ fatal("out of memory");
event_set(&tty->event_out, tty->fd, EV_WRITE, tty_write_callback, tty);
tty->out = evbuffer_new();
+ if (tty->out == NULL)
+ fatal("out of memory");
evtimer_set(&tty->timer, tty_timer_callback, tty);