[Bug 743062] Various GstObject subclasses leak when created by bindings using g_object_new()

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Mon Jun 20 11:59:27 UTC 2016


https://bugzilla.gnome.org/show_bug.cgi?id=743062

--- Comment #4 from Christoph Reiter (lazka) <reiter.christoph at gmail.com> ---
At least for Python we could work around the leak in gst-python overrides, by
manually unrefing after creation:

class Bus(Gst.Bus):
    def __init__(self, *args, **kwargs):
        super(Bus, self).__init__(*args, **kwargs)
        self.unref()

If you'd rather close this bug I can move it to pygobject.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list