ITS#4136 fix prev commit

This commit is contained in:
Howard Chu 2005-11-03 12:45:57 +00:00
parent 2a24cbb5e8
commit 11f6938162

View file

@ -1895,9 +1895,11 @@ connection_input( Connection *conn )
connection_op_queue( op );
cri->op = op;
} else {
cri->nullop = 1;
rc = ldap_pvt_thread_pool_submit( &connection_pool,
connection_operation, (void *) cri->op );
if ( !cri->nullop ) {
cri->nullop = 1;
rc = ldap_pvt_thread_pool_submit( &connection_pool,
connection_operation, (void *) cri->op );
}
connection_op_activate( op );
}
#else