[PATCH 4/4] server: Remove special handling of STATUS_MORE_PROCESSING_REQUIRED.
    Zebediah Figura 
    zfigura at codeweavers.com
       
    Mon Jul  5 11:20:02 CDT 2021
    
    
  
This was used to implement AcceptEx() using multiple APCs, and made obsolete by
0bbd3f66178abdc6ea15d30d2eb3b033367f8407.
Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
---
 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)
         {
-- 
2.30.2
    
    
More information about the wine-devel
mailing list