From 3bb981743ce362c485f72fbc55b9fcf72e79d05f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Wed, 18 Feb 2015 21:27:40 +0000 Subject: [PATCH] [CRYPT32] - Addenratum to r64026: Merge the certificate stores for real. CORE-5675 #resolve svn path=/trunk/; revision=66349 --- reactos/dll/win32/crypt32/rootstore.c | 1 + 1 file changed, 1 insertion(+) diff --git a/reactos/dll/win32/crypt32/rootstore.c b/reactos/dll/win32/crypt32/rootstore.c index f3c8bbac178..c9c01750960 100644 --- a/reactos/dll/win32/crypt32/rootstore.c +++ b/reactos/dll/win32/crypt32/rootstore.c @@ -808,6 +808,7 @@ static HCERTSTORE create_root_store(void) HCERTSTORE collStore = CertOpenStore(CERT_STORE_PROV_COLLECTION, 0, 0, CERT_STORE_CREATE_NEW_FLAG, NULL); CertAddStoreToCollection(collStore, regStore, 0, 0); + CertAddStoreToCollection(collStore, root, 0, 0); root = collStore; } }