Add a missing va_end() call. Pointed out by Jiwon Lee.
* gtk/gtktreestore.c (gtk_tree_store_new): Add a missing
va_end() call. Pointed out by Jiwon Lee.
svn path=/trunk/; revision=22021
This commit is contained in:
@ -276,6 +276,7 @@ gtk_tree_store_new (gint n_columns,
|
||||
{
|
||||
g_warning ("%s: Invalid type %s\n", G_STRLOC, g_type_name (type));
|
||||
g_object_unref (retval);
|
||||
va_end (args);
|
||||
return NULL;
|
||||
}
|
||||
gtk_tree_store_set_column_type (retval, i, type);
|
||||
|
||||
Reference in New Issue
Block a user