From: Bruno Haible Date: Tue, 25 Sep 2007 00:24:18 +0000 (+0000) Subject: Add missing va_end call. Reported by Andreas Schwab. X-Git-Tag: v0.17~245 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91d9e509dbfda41cf706a4e7bcb0d2910d18a621;p=thirdparty%2Fgettext.git Add missing va_end call. Reported by Andreas Schwab. --- diff --git a/gnulib-local/lib/vasprintf.c b/gnulib-local/lib/vasprintf.c index df5c3439a..632e88b13 100644 --- a/gnulib-local/lib/vasprintf.c +++ b/gnulib-local/lib/vasprintf.c @@ -153,6 +153,7 @@ checkit (const char* format, ...) va_start (args, format); vasprintf (&result, format, args); + va_end (args); if (strlen (result) < global_total_width) printf ("PASS: "); else