clutter/actor: Don't forget va_end if using varargs

This commit is contained in:
Niels De Graef 2018-11-12 15:04:58 +01:00
parent 1dff74e71c
commit 2a4f1be81b

View File

@ -21156,6 +21156,7 @@ clutter_actor_bind_model_with_properties (ClutterActor *self,
model_property = va_arg (args, char *); model_property = va_arg (args, char *);
} }
va_end (args);
clutter_actor_bind_model (self, model, bind_child_with_properties, clos, bind_closure_free); clutter_actor_bind_model (self, model, bind_child_with_properties, clos, bind_closure_free);
} }