Fixed a bug that caused APCs to be "forgotten".

This commit is contained in:
Martin Wilck 2002-01-09 19:09:57 +00:00 committed by Alexandre Julliard
parent 0f2f2b34fa
commit b1c45b9424
1 changed files with 2 additions and 0 deletions

View File

@ -562,6 +562,8 @@ int thread_queue_apc( struct thread *thread, struct object *owner, void *func,
queue->head = apc;
wake_thread( thread );
}
else apc->prev->next = apc;
return 1;
}