summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErlend Eriksen <erlend_ne@hotmail.com>2019-03-28 00:27:37 +0100
committerErlend Eriksen <erlend_ne@hotmail.com>2019-03-28 00:27:37 +0100
commita9d3bcc03ed59d9c1b463503acbbe1df5a7be21a (patch)
treeef218929d94c7a491962cc3813604afdbd88d6b3
parent0becf0b67d2050c01fc65f09a058473173375e33 (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 b09db93..43ae44e 100644
--- a/gst/rtsp-server/rtsp-session-pool.c
+++ b/gst/rtsp-server/rtsp-session-pool.c
@@ -386,7 +386,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 */