]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Add missing va_end call. Reported by Andreas Schwab.
authorBruno Haible <bruno@clisp.org>
Tue, 25 Sep 2007 00:24:18 +0000 (00:24 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:15:05 +0000 (12:15 +0200)
gnulib-local/lib/vasprintf.c

index df5c3439ac91208b11efebe57ec26ffc4e258719..632e88b1300dc50a517cf5b7a8fa01d89960b96e 100644 (file)
@@ -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