[staticanalysis]: Add missing va_end()
https://bugzilla.gnome.org/show_bug.cgi?id=732020
This commit is contained in:
parent
d7067975e7
commit
dfda6e3a46
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue