Skip to content
Snippets Groups Projects
Commit f8d49b01 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

address ITS#4023

parent b79d4bdc
No related branches found
No related tags found
No related merge requests found
......@@ -204,6 +204,13 @@ rewrite_session_var_set_f(
session = rewrite_session_find( info, cookie );
if ( session == NULL ) {
session = rewrite_session_init( info, cookie );
if ( session == NULL ) {
return REWRITE_ERR;
}
#ifdef USE_REWRITE_LDAP_PVT_THREADS
ldap_pvt_thread_mutex_lock( &session->ls_mutex );
#endif /* USE_REWRITE_LDAP_PVT_THREADS */
}
#ifdef USE_REWRITE_LDAP_PVT_THREADS
......
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