diff options
author | nicm <nicm> | 2016-09-28 14:40:07 +0000 |
---|---|---|
committer | nicm <nicm> | 2016-09-28 14:40:07 +0000 |
commit | bb5798aa0e9e1c4c992afab4939fc0ce7c1479c1 (patch) | |
tree | a572d74d41d033476e8c8177ab383e92ad5f564b /input.c | |
parent | acacb718e5452bfdba4810007d5a10eace1a9fec (diff) | |
download | rtmux-bb5798aa0e9e1c4c992afab4939fc0ce7c1479c1.tar.gz rtmux-bb5798aa0e9e1c4c992afab4939fc0ce7c1479c1.tar.bz2 rtmux-bb5798aa0e9e1c4c992afab4939fc0ce7c1479c1.zip |
Couple of vasprintf -> xvasprintf.
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); |