diff options
author | Thomas Adam <thomas@xteddy.org> | 2018-11-19 14:02:41 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2018-11-19 14:02:41 +0000 |
commit | efd01f3bfd84d4a692cfbf746517f891d4ecaa27 (patch) | |
tree | b2ed5d4a20750075b483711c63493dffc81d6348 /input.c | |
parent | a7da2357a512d5a325aa12ca0d544df85530a4d3 (diff) | |
parent | 749f67b7d801eed03345fef9c04206fbd079c3cb (diff) | |
download | rtmux-efd01f3bfd84d4a692cfbf746517f891d4ecaa27.tar.gz rtmux-efd01f3bfd84d4a692cfbf746517f891d4ecaa27.tar.bz2 rtmux-efd01f3bfd84d4a692cfbf746517f891d4ecaa27.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -767,6 +767,8 @@ input_init(struct window_pane *wp) ictx->input_buf = xmalloc(INPUT_BUF_START); ictx->since_ground = evbuffer_new(); + if (ictx->since_ground == NULL) + fatalx("out of memory"); evtimer_set(&ictx->timer, input_timer_callback, ictx); |