mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
gst/rtpmanager/rtpsession.c: Don't use GLib-2.10 API, we only require GLib 2.8 at the moment.
Original commit message from CVS: * gst/rtpmanager/rtpsession.c: (rtp_session_finalize): Don't use GLib-2.10 API, we only require GLib 2.8 at the moment.
This commit is contained in:
parent
54b3dec1f5
commit
677b361dc3
1 changed files with 2 additions and 2 deletions
|
@ -147,8 +147,8 @@ rtp_session_finalize (GObject * object)
|
||||||
sess = RTP_SESSION_CAST (object);
|
sess = RTP_SESSION_CAST (object);
|
||||||
|
|
||||||
g_mutex_free (sess->lock);
|
g_mutex_free (sess->lock);
|
||||||
g_hash_table_unref (sess->ssrcs);
|
g_hash_table_destroy (sess->ssrcs);
|
||||||
g_hash_table_unref (sess->cnames);
|
g_hash_table_destroy (sess->cnames);
|
||||||
g_object_unref (sess->source);
|
g_object_unref (sess->source);
|
||||||
|
|
||||||
G_OBJECT_CLASS (rtp_session_parent_class)->finalize (object);
|
G_OBJECT_CLASS (rtp_session_parent_class)->finalize (object);
|
||||||
|
|
Loading…
Reference in a new issue