6 Jun
2012
6 Jun
'12
11:56 a.m.
"Erich E. Hoover" <compholio(a)gmail.com> writes:
@@ -285,7 +285,9 @@ void async_set_result( struct object *obj, unsigned int status, unsigned int tot if (async->timeout) remove_timeout_user( async->timeout ); async->timeout = NULL; async->status = status; - if (async->data.cvalue) + if (status == STATUS_MORE_PROCESSING_REQUIRED) + async->status = STATUS_PENDING; + else if (async->data.cvalue)
Why are you marking the async pending? That doesn't seem right, it's terminated at that point. -- Alexandre Julliard julliard(a)winehq.org