From 0f754e29dd3760fc0b172c1220f18b753fb0957e Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Fri, 16 Oct 2015 10:53:14 +1100 Subject: need va_copy before va_start reported by Nicholas Lemonias --- openbsd-compat/bsd-asprintf.c | 1 + 1 file changed, 1 insertion(+) (limited to 'openbsd-compat/bsd-asprintf.c') diff --git a/openbsd-compat/bsd-asprintf.c b/openbsd-compat/bsd-asprintf.c index 3368195d4..db57acce9 100644 --- a/openbsd-compat/bsd-asprintf.c +++ b/openbsd-compat/bsd-asprintf.c @@ -47,6 +47,7 @@ vasprintf(char **str, const char *fmt, va_list ap) char *string, *newstr; size_t len; + va_start(ap); VA_COPY(ap2, ap); if ((string = malloc(INIT_SZ)) == NULL) goto fail; -- cgit v1.2.3