[staticanalysis]: Add missing va_end()

https://bugzilla.gnome.org/show_bug.cgi?id=732020
This commit is contained in:
Colin Walters 2014-06-21 17:24:06 -04:00
parent d7067975e7
commit dfda6e3a46
1 changed files with 2 additions and 0 deletions

View File

@ -98,6 +98,8 @@ ot_gfile_get_child_strconcat (GFile *parent,
while ((arg = va_arg (args, const char *)) != NULL)
g_string_append (buf, arg);
va_end (args);
ret = g_file_get_child (parent, buf->str);
g_string_free (buf, TRUE);