From bb5798aa0e9e1c4c992afab4939fc0ce7c1479c1 Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 28 Sep 2016 14:40:07 +0000 Subject: Couple of vasprintf -> xvasprintf. --- input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'input.c') diff --git a/input.c b/input.c index 289a25c8..5c11a61d 100644 --- a/input.c +++ b/input.c @@ -961,7 +961,7 @@ input_reply(struct input_ctx *ictx, const char *fmt, ...) char *reply; va_start(ap, fmt); - vasprintf(&reply, fmt, ap); + xvasprintf(&reply, fmt, ap); va_end(ap); bufferevent_write(ictx->wp->event, reply, strlen(reply)); -- cgit