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

re-fix ITS#4405 (really start from the first conn)

parent e4d24ecc
No related branches found
No related tags found
No related merge requests found
......@@ -354,8 +354,7 @@ wait4msg(
ldap_pvt_thread_mutex_lock( &ld->ld_conn_mutex );
#endif
for ( lc = ld->ld_conns;
rc == LDAP_MSG_X_KEEP_LOOKING && lc != NULL;
lc = lc->lconn_next )
rc == LDAP_MSG_X_KEEP_LOOKING && lc != NULL; )
{
if ( lc->lconn_status == LDAP_CONNST_CONNECTED &&
ldap_is_read_ready( ld, lc->lconn_sb ) )
......@@ -374,8 +373,14 @@ wait4msg(
* sane; better restart
* (ITS#4405) */
lc = ld->ld_conns;
/* don't get to next conn! */
break;
}
}
/* next conn */
lc = lc->lconn_next;
}
#ifdef LDAP_R_COMPILE
ldap_pvt_thread_mutex_unlock( &ld->ld_conn_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