Commit 6aa03fc4 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32: Add more tests for getting issuer cert from store.

Show that certificates are added to memory stores at the head rather than the tail.
parent 30892c8b
......@@ -244,7 +244,7 @@ void *ContextList_Add(struct ContextList *list, void *toLink, void *toReplace)
list->contextInterface->free(toReplace);
}
else
list_add_tail(&list->contexts, entry);
list_add_head(&list->contexts, entry);
LeaveCriticalSection(&list->cs);
}
return context;
......
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