mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 19:19:35 -05:00
ITS#10060 Try harder to find a finished operation with msgid=LDAP_RES_ANY
This commit is contained in:
parent
3676f3ad69
commit
4b7b2172d9
1 changed files with 4 additions and 2 deletions
|
|
@ -196,11 +196,13 @@ chkResponseList(
|
|||
tmp = NULL;
|
||||
}
|
||||
|
||||
if ( tmp == NULL ) {
|
||||
if ( tmp == NULL && msgid != LDAP_RES_ANY ) {
|
||||
lm = NULL;
|
||||
}
|
||||
|
||||
break;
|
||||
if ( tmp || msgid != LDAP_RES_ANY ) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
lastlm = &lm->lm_next;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue