Fix double semicolons

This commit is contained in:
Tim-Philipp Müller 2015-03-10 09:39:22 +00:00
parent 852cc09f54
commit 896767b041
2 changed files with 3 additions and 3 deletions

View file

@ -975,7 +975,7 @@ media_unprepared (GstRTSPMedia * media, GWeakRef * ref)
if (!factory)
return;
priv = factory->priv;;
priv = factory->priv;
g_mutex_lock (&priv->medias_lock);
g_hash_table_foreach_remove (priv->medias, (GHRFunc) compare_media, media);
@ -1029,7 +1029,7 @@ gst_rtsp_media_factory_construct (GstRTSPMediaFactory * factory,
g_return_val_if_fail (GST_IS_RTSP_MEDIA_FACTORY (factory), NULL);
g_return_val_if_fail (url != NULL, NULL);
priv = factory->priv;;
priv = factory->priv;
klass = GST_RTSP_MEDIA_FACTORY_GET_CLASS (factory);
/* convert the url to a key for the hashtable. NULL return or a NULL function

View file

@ -333,7 +333,7 @@ GST_START_TEST (test_describe)
GST_END_TEST;
static const gchar *expected_transport = NULL;;
static const gchar *expected_transport = NULL;
static gboolean
test_setup_response_200_multicast (GstRTSPClient * client,