From: Erlend Eriksen Date: Wed, 27 Mar 2019 23:27:37 +0000 (+0100) Subject: session pool: fix missing klass-> in klass->create_session X-Git-Tag: 1.16.2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a9d3bcc03ed59d9c1b463503acbbe1df5a7be21a;p=platform%2Fupstream%2Fgst-rtsp-server.git session pool: fix missing klass-> in klass->create_session --- 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 */