Skip to content
Snippets Groups Projects
Commit da355b31 authored by Mark Valence's avatar Mark Valence
Browse files

Disable thread pooling while I fix the deadlock.

parent 61be4bd0
No related branches found
No related tags found
No related merge requests found
......@@ -306,6 +306,8 @@ ldap_pvt_thread_pool_submit ( ldap_pvt_thread_pool_t pool, void *(*start_routine
int need_thread = 0;
ldap_pvt_thread_t thr;
return ldap_pvt_thread_create( &thr, 1, (void *)start_routine, arg );
if (pool == NULL)
return(-1);
......
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