summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2007-04-21 19:21:49 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-08-11 02:30:25 +0100
commit677b361dc33b4a08fa18df88a64f4d49a511647d (patch)
treef2adb382a3ed03a96c035f53d91b8c776bf80e68 /gst
parent54b3dec1f53c823bd947685bf89c4d0e041c2e2a (diff)
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.
Diffstat (limited to 'gst')
-rw-r--r--gst/rtpmanager/rtpsession.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/rtpmanager/rtpsession.c b/gst/rtpmanager/rtpsession.c
index 2283dc97..e13f7d6c 100644
--- a/gst/rtpmanager/rtpsession.c
+++ b/gst/rtpmanager/rtpsession.c
@@ -147,8 +147,8 @@ rtp_session_finalize (GObject * object)
sess = RTP_SESSION_CAST (object);
g_mutex_free (sess->lock);
- g_hash_table_unref (sess->ssrcs);
- g_hash_table_unref (sess->cnames);
+ g_hash_table_destroy (sess->ssrcs);
+ g_hash_table_destroy (sess->cnames);
g_object_unref (sess->source);
G_OBJECT_CLASS (rtp_session_parent_class)->finalize (object);