[pkg-wine-party] [SCM] Debian Wine packaging branch, wheezy, updated. wine-1.4-7-302-gb61b690

Alexandre Julliard julliard at winehq.org
Sun Jun 17 20:03:59 UTC 2012


The following commit has been merged in the wheezy branch:
commit 20186d478ec60077fbbb46eace64b3c6931261e5
Author: Erich Hoover <ehoover at mines.edu>
Date:   Wed Jun 6 17:35:08 2012 -0600

    server: STATUS_MORE_PROCESSING_REQUIRED indicates that an async operation should not send a completion.
    (cherry picked from commit 93552cc3df52dfd8130ae72361ad277fd1187a6d)

diff --git a/server/async.c b/server/async.c
index 843a02b..ccddec7 100644
--- a/server/async.c
+++ b/server/async.c
@@ -243,6 +243,9 @@ void async_set_timeout( struct async *async, timeout_t timeout, unsigned int sta
 static void add_async_completion( struct async_queue *queue, apc_param_t cvalue, unsigned int status,
                                   unsigned int information )
 {
+    if (status == STATUS_MORE_PROCESSING_REQUIRED)
+        return; /* The async callback has successfully finished but no completion should be reported */
+
     if (queue->fd)
     {
         apc_param_t ckey;

-- 
Debian Wine packaging



More information about the pkg-wine-party mailing list