libs/gst/controller/gstcontroller.c: Revert one change, that make ret value possible uninitialized.

Original commit message from CVS:
* libs/gst/controller/gstcontroller.c:
Revert one change, that make ret value possible uninitialized.
This commit is contained in:
Stefan Kost 2008-06-20 08:36:46 +00:00
parent 73151ffc11
commit 8d6056b7b1
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-06-20 Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c:
Revert one change, that make ret value possible uninitialized.
2008-06-20 Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.c:

View file

@ -666,7 +666,7 @@ gst_controller_sync_values (GstController * self, GstClockTime timestamp)
{
GstControlledProperty *prop;
GList *node;
gboolean ret;
gboolean ret = FALSE;
GValue value = { 0, };
g_return_val_if_fail (GST_IS_CONTROLLER (self), FALSE);