commit | c36c4a9924609df648e62e47fa017b19b844fd98 | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <[email protected]> | Fri Jan 02 14:09:23 2015 -0800 |
committer | Behdad Esfahbod <[email protected]> | Fri Jan 02 14:09:23 2015 -0800 |
tree | a7be595bde8334fed5ad6c7bdc8491610bf04f1e | |
parent | f34aaba8687a20794835e2dc878c52d1b53e6f85 [diff] [blame] |
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 @@ 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)