Commit 5d88b27d authored by Ge van Geldorp's avatar Ge van Geldorp Committed by Alexandre Julliard

server: The "select" call passes handles, not ints.

parent 89b458da
...@@ -994,7 +994,7 @@ DECL_HANDLER(resume_thread) ...@@ -994,7 +994,7 @@ DECL_HANDLER(resume_thread)
/* select on a handle list */ /* select on a handle list */
DECL_HANDLER(select) DECL_HANDLER(select)
{ {
int count = get_req_data_size() / sizeof(int); int count = get_req_data_size() / sizeof(obj_handle_t);
select_on( count, req->cookie, get_req_data(), req->flags, &req->timeout, req->signal ); select_on( count, req->cookie, get_req_data(), req->flags, &req->timeout, req->signal );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment