Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gstreamer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2016-06-28 16:01:17 +0300
committerSebastian Dröge <sebastian@centricular.com>2016-07-04 13:43:34 +0300
commitaee7ab344450c151990f1f1f5946136124202a77 (patch)
tree6a425ddcc003564be70366164a8d361f17a39f03
parentb09fbe0797d4982e8ac88091e4fc072ae529a9dc (diff)
bus: chain up GObject::constructed() to the parent class' implementation
Needed so GstBus can be tracked by the leaks tracer. https://bugzilla.gnome.org/show_bug.cgi?id=768141
-rw-r--r--gst/gstbus.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/gstbus.c b/gst/gstbus.c
index 303e34a93b..b8c2995ddb 100644
--- a/gst/gstbus.c
+++ b/gst/gstbus.c
@@ -149,6 +149,8 @@ gst_bus_constructed (GObject * object)
bus->priv->poll = gst_poll_new_timer ();
gst_poll_get_read_gpollfd (bus->priv->poll, &bus->priv->pollfd);
}
+
+ G_OBJECT_CLASS (gst_bus_parent_class)->constructed (object);
}
static void