From 43bd4e5d3fcbe1a22bcae45d461f83f2ee0a9758 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 27 Jan 2009 10:35:50 +0000 Subject: [PATCH] [timeline] Check the fps property range in the ctor The clutter_timeline_new() constructor is not checking the full range of the passed :fps property. The ParamSpec of the property and the setter method perform this check, so the ctor should as well. --- clutter/clutter-timeline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutter/clutter-timeline.c b/clutter/clutter-timeline.c index 739724c03..47bf9ca97 100644 --- a/clutter/clutter-timeline.c +++ b/clutter/clutter-timeline.c @@ -1258,7 +1258,7 @@ clutter_timeline_new (guint n_frames, guint fps) { g_return_val_if_fail (n_frames > 0, NULL); - g_return_val_if_fail (fps > 0, NULL); + g_return_val_if_fail (fps > 0 && fps <= 1000, NULL); return g_object_new (CLUTTER_TYPE_TIMELINE, "fps", fps,