Commit df39bbba authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32: Don't delete a context when removing it from a list.

parent 787d0ab5
......@@ -321,7 +321,6 @@ void ContextList_Delete(struct ContextList *list, void *context)
list_remove(entry);
LeaveCriticalSection(&list->cs);
list_init(entry);
list->contextInterface->free(context);
}
static void ContextList_Empty(struct ContextList *list)
......
......@@ -237,7 +237,6 @@ static void testMemStore(void)
GetLastError());
/* try deleting a copy */
ret = CertDeleteCertificateFromStore(copy);
todo_wine
ok(ret, "CertDeleteCertificateFromStore failed: %08x\n",
GetLastError());
/* check that the store is empty */
......
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