mirror of
https://github.com/reactos/reactos.git
synced 2024-12-25 03:53:36 +08:00
[WINTRUST] Sync with Wine Staging 3.9. CORE-14656
This commit is contained in:
parent
c33584a490
commit
2f569d4a7f
@ -787,7 +787,7 @@ CRYPT_PROVIDER_CERT * WINAPI WTHelperGetProvCertFromChain(
|
||||
|
||||
TRACE("(%p %d)\n", pSgnr, idxCert);
|
||||
|
||||
if (idxCert >= pSgnr->csCertChain || !pSgnr->pasCertChain)
|
||||
if (!pSgnr || idxCert >= pSgnr->csCertChain || !pSgnr->pasCertChain)
|
||||
return NULL;
|
||||
cert = &pSgnr->pasCertChain[idxCert];
|
||||
TRACE("returning %p\n", cert);
|
||||
|
@ -206,7 +206,7 @@ reactos/dll/win32/winmm # Forked at Wine-20050628
|
||||
reactos/dll/win32/winmm/midimap # Forked at Wine-20050628
|
||||
reactos/dll/win32/winmm/wavemap # Forked at Wine-20050628
|
||||
reactos/dll/win32/winscard # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/wintrust # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/wintrust # Synced to WineStaging-3.9
|
||||
reactos/dll/win32/wldap32 # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/wmi # Synced to WineStaging-2.9
|
||||
reactos/dll/win32/wmiutils # Synced to WineStaging-3.3
|
||||
|
Loading…
Reference in New Issue
Block a user