From 18bb9ffa6bc2e2d3f6592a75b270e334dee5b492 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 26 Nov 2012 17:35:51 +0100 Subject: [PATCH] client: small cleanup --- gst/rtsp-server/rtsp-client.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gst/rtsp-server/rtsp-client.c b/gst/rtsp-server/rtsp-client.c index 3320284..f382282f 100644 --- a/gst/rtsp-server/rtsp-client.c +++ b/gst/rtsp-server/rtsp-client.c @@ -1909,21 +1909,21 @@ void gst_rtsp_client_set_send_func (GstRTSPClient * client, GstRTSPClientSendFunc func, gpointer user_data, GDestroyNotify notify) { - GDestroyNotify old_func; + GDestroyNotify old_notify; gpointer old_data; g_return_if_fail (GST_IS_RTSP_CLIENT (client)); g_mutex_lock (&client->lock); client->send_func = func; - old_func = client->send_notify; + old_notify = client->send_notify; old_data = client->send_data; client->send_notify = notify; client->send_data = user_data; g_mutex_unlock (&client->lock); - if (old_func) - old_func (old_data); + if (old_notify) + old_notify (old_data); } /** -- 2.7.4