summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErlend Eriksen <erlend_ne@hotmail.com>2019-03-28 00:27:37 +0100
committerTim-Philipp Müller <tim@centricular.com>2019-05-02 00:09:49 +0100
commit5bef031d210550a06c6a4242ab67b66003d9534e (patch)
tree273c9825dab0a8cbd6a1d03c1eb63e208d110efc
parentac0be798cc9b106f783a5cbf20aaab6a05ad1ac5 (diff)
session pool: fix missing klass-> in klass->create_session
-rw-r--r--gst/rtsp-server/rtsp-session-pool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtsp-server/rtsp-session-pool.c b/gst/rtsp-server/rtsp-session-pool.c
index 3915b8c..8b79f2d 100644
--- a/gst/rtsp-server/rtsp-session-pool.c
+++ b/gst/rtsp-server/rtsp-session-pool.c
@@ -387,7 +387,7 @@ gst_rtsp_session_pool_create (GstRTSPSessionPool * pool)
} else {
/* not found, create session and insert it in the pool */
if (klass->create_session)
- result = create_session (pool, id);
+ result = klass->create_session (pool, id);
if (result == NULL)
goto too_many_sessions;
/* take additional ref for the pool */