STATUS_CANCELLED is correct for cancelled requests (corresponds to

ERROR_OPERATION_ABORTED).
This commit is contained in:
Martin Wilck 2002-04-14 19:33:52 +00:00 committed by Alexandre Julliard
parent 70e8fce405
commit 18c1514c74
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}