[PATCH 2/7] server: Allow completing non-alerted asyncs with STATUS_PENDING.

Zebediah Figura zfigura at codeweavers.com
Wed Sep 1 17:28:36 CDT 2021


Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
---
 server/async.c | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/server/async.c b/server/async.c
index b414604fcd4..5deaf04d686 100644
--- a/server/async.c
+++ b/server/async.c
@@ -390,14 +390,11 @@ void async_set_result( struct object *obj, unsigned int status, apc_param_t tota
 
     assert( async->terminated );  /* it must have been woken up if we get a result */
 
-    if (status == STATUS_PENDING)  /* restart it */
+    if (async->alerted && status == STATUS_PENDING)  /* restart it */
     {
-        if (async->alerted)
-        {
-            async->terminated = 0;
-            async->alerted = 0;
-            async_reselect( async );
-        }
+        async->terminated = 0;
+        async->alerted = 0;
+        async_reselect( async );
     }
     else
     {
-- 
2.33.0




More information about the wine-devel mailing list