mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
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:
parent
73151ffc11
commit
8d6056b7b1
2 changed files with 6 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue