Commit b1c45b94 authored by Martin Wilck's avatar Martin Wilck Committed by Alexandre Julliard

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

parent 0f2f2b34
......@@ -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;
}
......
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