mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
session pool: fix missing klass-> in klass->create_session
This commit is contained in:
parent
0becf0b67d
commit
a9d3bcc03e
1 changed files with 1 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue