a2dpsink: Free various props during cleanup

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8648>
This commit is contained in:
Doug Nazar 2025-03-14 22:03:53 -04:00 committed by GStreamer Marge Bot
parent 108cd906fa
commit ecccd6a8cf

View file

@ -120,6 +120,17 @@ cleanup_and_fail:
return NULL;
}
static void
gst_a2dp_sink_finalize (GObject * object)
{
GstA2dpSink *self = GST_A2DP_SINK (object);
g_free (self->device);
g_free (self->transport);
G_OBJECT_CLASS (parent_class)->finalize (object);
}
static void
gst_a2dp_sink_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec)
@ -281,6 +292,7 @@ gst_a2dp_sink_class_init (GstA2dpSinkClass * klass)
parent_class = g_type_class_peek_parent (klass);
object_class->finalize = GST_DEBUG_FUNCPTR (gst_a2dp_sink_finalize);
object_class->set_property = GST_DEBUG_FUNCPTR (gst_a2dp_sink_set_property);
object_class->get_property = GST_DEBUG_FUNCPTR (gst_a2dp_sink_get_property);