mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
client: fix build
This commit is contained in:
parent
5e2afcefdd
commit
517bb78ae3
1 changed files with 1 additions and 1 deletions
|
@ -299,7 +299,7 @@ client_watch_session (GstRTSPClient * client, GstRTSPSession * session)
|
|||
|
||||
g_mutex_lock (&priv->lock);
|
||||
/* check if we already know about this session */
|
||||
if (g_list_find (priv->sessions, session) = NULL) {
|
||||
if (g_list_find (priv->sessions, session) == NULL) {
|
||||
GST_INFO ("watching session %p", session);
|
||||
priv->sessions = g_list_prepend (priv->sessions, g_object_ref (session));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue