Fix invalid handle offset.

This commit is contained in:
Armin Novak 2018-03-06 13:58:40 +01:00
parent 4d401b44c0
commit a419677e8f
1 changed files with 1 additions and 1 deletions

View File

@ -954,7 +954,7 @@ void transport_get_fds(rdpTransport* transport, void** rfds, int* rcount)
rfds[index] = GetEventWaitObject(events[index]);
}
rfds[nCount + 1] = GetEventWaitObject(transport->rereadEvent);
rfds[nCount] = GetEventWaitObject(transport->rereadEvent);
}
BOOL transport_is_write_blocked(rdpTransport* transport)