Couple of vasprintf -> xvasprintf.

This commit is contained in:
nicm
2016-09-28 14:40:07 +00:00
parent acacb718e5
commit bb5798aa0e
2 changed files with 2 additions and 2 deletions

View File

@ -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));