[HarfBuzz] harfbuzz: Branch 'master'

Behdad Esfahbod behdad at kemper.freedesktop.org
Fri Jan 2 14:09:48 PST 2015


 util/options.cc |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit c36c4a9924609df648e62e47fa017b19b844fd98
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Fri Jan 2 14:09:23 2015 -0800

    Add missing va_end()
    
    Fixes https://github.com/behdad/harfbuzz/pull/74

diff --git a/util/options.cc b/util/options.cc
index 0adc179..5536820 100644
--- a/util/options.cc
+++ b/util/options.cc
@@ -55,6 +55,7 @@ fail (hb_bool_t suggest_help, const char *format, ...)
   va_list vap;
   va_start (vap, format);
   msg = g_strdup_vprintf (format, vap);
+  va_end (vap);
   const char *prgname = g_get_prgname ();
   g_printerr ("%s: %s\n", prgname, msg);
   if (suggest_help)


More information about the HarfBuzz mailing list