mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
- Revert the Wine code changes too, as requested on ML
svn path=/trunk/; revision=39013
This commit is contained in:
parent
131ca9ba08
commit
bcccb1d084
7 changed files with 4 additions and 59 deletions
|
@ -205,7 +205,7 @@ static HCERTCHAINENGINE CRYPT_GetDefaultChainEngine(void)
|
|||
|
||||
config.cbSize = sizeof(config);
|
||||
CertCreateCertificateChainEngine(&config, &engine);
|
||||
(void)InterlockedCompareExchangePointer(&CRYPT_defaultChainEngine, engine,
|
||||
InterlockedCompareExchangePointer(&CRYPT_defaultChainEngine, engine,
|
||||
NULL);
|
||||
if (CRYPT_defaultChainEngine != engine)
|
||||
CertFreeCertificateChainEngine(engine);
|
||||
|
|
|
@ -1,39 +0,0 @@
|
|||
Index: chain.c
|
||||
===================================================================
|
||||
--- chain.c (revision 38919)
|
||||
+++ chain.c (working copy)
|
||||
@@ -205,7 +205,7 @@
|
||||
|
||||
config.cbSize = sizeof(config);
|
||||
CertCreateCertificateChainEngine(&config, &engine);
|
||||
- InterlockedCompareExchangePointer(&CRYPT_defaultChainEngine, engine,
|
||||
+ (void)InterlockedCompareExchangePointer(&CRYPT_defaultChainEngine, engine,
|
||||
NULL);
|
||||
if (CRYPT_defaultChainEngine != engine)
|
||||
CertFreeCertificateChainEngine(engine);
|
||||
Index: main.c
|
||||
===================================================================
|
||||
--- main.c (revision 38919)
|
||||
+++ main.c (working copy)
|
||||
@@ -66,7 +66,7 @@
|
||||
|
||||
CryptAcquireContextW(&prov, NULL, MS_ENHANCED_PROV_W, PROV_RSA_FULL,
|
||||
CRYPT_VERIFYCONTEXT);
|
||||
- InterlockedCompareExchangePointer((PVOID *)&hDefProv, (PVOID)prov,
|
||||
+ (void)InterlockedCompareExchangePointer((PVOID *)&hDefProv, (PVOID)prov,
|
||||
NULL);
|
||||
if (hDefProv != prov)
|
||||
CryptReleaseContext(prov, 0);
|
||||
Index: rootstore.c
|
||||
===================================================================
|
||||
--- rootstore.c (revision 38919)
|
||||
+++ rootstore.c (working copy)
|
||||
@@ -759,7 +759,7 @@
|
||||
{
|
||||
HCERTSTORE root = create_root_store();
|
||||
|
||||
- InterlockedCompareExchangePointer((PVOID *)&CRYPT_rootStore, root,
|
||||
+ (void)InterlockedCompareExchangePointer((PVOID *)&CRYPT_rootStore, root,
|
||||
NULL);
|
||||
if (CRYPT_rootStore != root)
|
||||
CertCloseStore(root, 0);
|
|
@ -66,7 +66,7 @@ HCRYPTPROV CRYPT_GetDefaultProvider(void)
|
|||
|
||||
CryptAcquireContextW(&prov, NULL, MS_ENHANCED_PROV_W, PROV_RSA_FULL,
|
||||
CRYPT_VERIFYCONTEXT);
|
||||
(void)InterlockedCompareExchangePointer((PVOID *)&hDefProv, (PVOID)prov,
|
||||
InterlockedCompareExchangePointer((PVOID *)&hDefProv, (PVOID)prov,
|
||||
NULL);
|
||||
if (hDefProv != prov)
|
||||
CryptReleaseContext(prov, 0);
|
||||
|
|
|
@ -759,7 +759,7 @@ PWINECRYPT_CERTSTORE CRYPT_RootOpenStore(HCRYPTPROV hCryptProv, DWORD dwFlags)
|
|||
{
|
||||
HCERTSTORE root = create_root_store();
|
||||
|
||||
(void)InterlockedCompareExchangePointer((PVOID *)&CRYPT_rootStore, root,
|
||||
InterlockedCompareExchangePointer((PVOID *)&CRYPT_rootStore, root,
|
||||
NULL);
|
||||
if (CRYPT_rootStore != root)
|
||||
CertCloseStore(root, 0);
|
||||
|
|
|
@ -3277,9 +3277,6 @@ static void show_cert_usages(HWND hwnd, struct edit_cert_data *data)
|
|||
LVCOLUMNW column;
|
||||
PurposeSelection purposeSelection;
|
||||
|
||||
/* hack for retarded gcc */
|
||||
purposeSelection = 0;
|
||||
|
||||
GetWindowRect(lv, &rc);
|
||||
column.mask = LVCF_WIDTH;
|
||||
column.cx = rc.right - rc.left;
|
||||
|
|
|
@ -824,7 +824,7 @@ static inline void proxy_manager_set_context(struct proxy_manager *This, MSHCTX
|
|||
} while (new_dest_context != old_dest_context);
|
||||
|
||||
if (dest_context_data)
|
||||
(void)InterlockedExchangePointer(&This->dest_context_data, dest_context_data);
|
||||
InterlockedExchangePointer(&This->dest_context_data, dest_context_data);
|
||||
}
|
||||
|
||||
static HRESULT proxy_manager_query_local_interface(struct proxy_manager * This, REFIID riid, void ** ppv)
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
Index: marshal.c
|
||||
===================================================================
|
||||
--- marshal.c (revision 38899)
|
||||
+++ marshal.c (working copy)
|
||||
@@ -824,7 +824,7 @@
|
||||
} while (new_dest_context != old_dest_context);
|
||||
|
||||
if (dest_context_data)
|
||||
- InterlockedExchangePointer(&This->dest_context_data, dest_context_data);
|
||||
+ (void)InterlockedExchangePointer(&This->dest_context_data, dest_context_data);
|
||||
}
|
||||
|
||||
static HRESULT proxy_manager_query_local_interface(struct proxy_manager * This, REFIID riid, void ** ppv)
|
Loading…
Reference in a new issue