mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
parent
ce6f8e2d93
commit
fd3c2adae7
1 changed files with 3 additions and 1 deletions
|
|
@ -4213,9 +4213,11 @@ retry_seek:
|
|||
rc = 0;
|
||||
while (--async_i >= 0) {
|
||||
if (ov[async_i].hEvent) {
|
||||
if (!GetOverlappedResult(fd, &ov[async_i], &wres, TRUE)) {
|
||||
DWORD temp_wres;
|
||||
if (!GetOverlappedResult(fd, &ov[async_i], &temp_wres, TRUE)) {
|
||||
rc = ErrCode(); /* Continue on so that all the event signals are reset */
|
||||
}
|
||||
wres = temp_wres;
|
||||
}
|
||||
}
|
||||
if (rc) { /* any error on GetOverlappedResult, exit now */
|
||||
|
|
|
|||
Loading…
Reference in a new issue