Commit 18c1514c authored by Martin Wilck's avatar Martin Wilck Committed by Alexandre Julliard

STATUS_CANCELLED is correct for cancelled requests (corresponds to

ERROR_OPERATION_ABORTED).
parent 70e8fce4
......@@ -71,7 +71,7 @@ void destroy_async_queue( struct async_queue *q )
{
while(q->head)
{
async_notify(q->head, STATUS_HANDLES_CLOSED);
async_notify(q->head, STATUS_CANCELLED);
destroy_async(q->head);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment