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:
Tim-Philipp Müller 2007-04-21 19:21:49 +00:00 committed by Tim-Philipp Müller
parent 54b3dec1f5
commit 677b361dc3

View file

@ -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);