Module: wine Branch: master Commit: e2b9131bd9b019b6d6867ad741eb7e4f1916ca9b URL: https://source.winehq.org/git/wine.git/?a=commit;h=e2b9131bd9b019b6d6867ad74...
Author: Zebediah Figura zfigura@codeweavers.com Date: Mon Jul 5 11:20:02 2021 -0500
server: Remove special handling of STATUS_MORE_PROCESSING_REQUIRED.
This was used to implement AcceptEx() using multiple APCs, and made obsolete by 0bbd3f66178abdc6ea15d30d2eb3b033367f8407.
Signed-off-by: Zebediah Figura zfigura@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
server/async.c | 1 - 1 file changed, 1 deletion(-)
diff --git a/server/async.c b/server/async.c index 0425e4eddf7..dbd4859edc4 100644 --- a/server/async.c +++ b/server/async.c @@ -396,7 +396,6 @@ void async_set_result( struct object *obj, unsigned int status, apc_param_t tota if (async->timeout) remove_timeout_user( async->timeout ); async->timeout = NULL; async->status = status; - if (status == STATUS_MORE_PROCESSING_REQUIRED) return; /* don't report the completion */
if (async->data.apc) {