STATUS_CANCELLED is correct for cancelled requests (corresponds to
ERROR_OPERATION_ABORTED).
This commit is contained in:
parent
70e8fce405
commit
18c1514c74
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue