Skip to content
Snippets Groups Projects
Commit 924389d9 authored by Jan Synacek's avatar Jan Synacek Committed by Quanah Gibson-Mount
Browse files

ITS#7723 fix reference counting

parent e725f211
No related branches found
No related tags found
No related merge requests found
......@@ -161,6 +161,7 @@ rewrite_session_find(
#ifdef USE_REWRITE_LDAP_PVT_THREADS
if ( session ) {
ldap_pvt_thread_mutex_lock( &session->ls_mutex );
session->ls_count++;
}
ldap_pvt_thread_rdwr_runlock( &info->li_cookies_mutex );
#endif /* USE_REWRITE_LDAP_PVT_THREADS */
......@@ -178,6 +179,7 @@ rewrite_session_return(
)
{
assert( session != NULL );
session->ls_count--;
ldap_pvt_thread_mutex_unlock( &session->ls_mutex );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment