kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 5e1cb53f139cb8467c6f9120fcc98b376dff096b
parent 552d59248c04afdcbee52300aed8a8b4fe23978a
Author: Joris Vink <joris@coders.se>
Date:   Fri,  4 Nov 2016 09:16:05 +0100

use a copy of args when falling back to vasprintf.

Diffstat:
src/buf.c | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/buf.c b/src/buf.c @@ -82,14 +82,17 @@ void kore_buf_appendv(struct kore_buf *buf, const char *fmt, va_list args) { int l; + va_list copy; char *b, sb[BUFSIZ]; + va_copy(copy, args); + l = vsnprintf(sb, sizeof(sb), fmt, args); if (l == -1) fatal("kore_buf_appendv(): vsnprintf error"); if ((size_t)l >= sizeof(sb)) { - l = vasprintf(&b, fmt, args); + l = vasprintf(&b, fmt, copy); if (l == -1) fatal("kore_buf_appendv(): error or truncation"); } else { @@ -99,6 +102,8 @@ kore_buf_appendv(struct kore_buf *buf, const char *fmt, va_list args) kore_buf_append(buf, b, l); if (b != sb) free(b); + + va_end(copy); } void