Fix some missing va_ends
Found by Coverity. https://bugzilla.gnome.org/show_bug.cgi?id=689496
This commit is contained in:
@ -1206,6 +1206,10 @@ clutter_animator_set (ClutterAnimator *animator,
|
||||
|
||||
object = first_object;
|
||||
property_name = first_property_name;
|
||||
|
||||
g_return_if_fail (object);
|
||||
g_return_if_fail (property_name);
|
||||
|
||||
mode = first_mode;
|
||||
progress = first_progress;
|
||||
|
||||
@ -1218,9 +1222,6 @@ clutter_animator_set (ClutterAnimator *animator,
|
||||
GValue value = G_VALUE_INIT;
|
||||
gchar *error = NULL;
|
||||
|
||||
g_return_if_fail (object);
|
||||
g_return_if_fail (property_name);
|
||||
|
||||
klass = G_OBJECT_GET_CLASS (object);
|
||||
pspec = g_object_class_find_property (klass, property_name);
|
||||
|
||||
|
Reference in New Issue
Block a user