crypt32/tests: Do not crash on some Win98.

This commit is contained in:
Alexander Morozov 2010-11-23 13:02:22 +03:00 committed by Alexandre Julliard
parent 92bfadef7f
commit 113c614525
1 changed files with 12 additions and 9 deletions

View File

@ -2081,15 +2081,18 @@ static void test_enveloped_msg_open(void)
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
context = CertCreateCertificateContext(X509_ASN_ENCODING, context = CertCreateCertificateContext(X509_ASN_ENCODING,
v1CertWithValidPubKey, sizeof(v1CertWithValidPubKey)); v1CertWithValidPubKey, sizeof(v1CertWithValidPubKey));
ok(context != NULL, "CertCreateCertificateContext failed: %08x\n", if (context)
GetLastError()); {
envelopedInfo.rgpRecipientCert = (PCERT_INFO *)&context->pCertInfo; envelopedInfo.rgpRecipientCert = (PCERT_INFO *)&context->pCertInfo;
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
msg = CryptMsgOpenToEncode(PKCS_7_ASN_ENCODING, 0, CMSG_ENVELOPED, msg = CryptMsgOpenToEncode(PKCS_7_ASN_ENCODING, 0, CMSG_ENVELOPED,
&envelopedInfo, NULL, NULL); &envelopedInfo, NULL, NULL);
todo_wine todo_wine
ok(msg != NULL, "CryptMsgOpenToEncode failed: %08x\n", GetLastError()); ok(msg != NULL, "CryptMsgOpenToEncode failed: %08x\n", GetLastError());
CryptMsgClose(msg); CryptMsgClose(msg);
}
else
win_skip("failed to create certificate context, skipping a test\n");
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
ret = pCryptAcquireContextA(&envelopedInfo.hCryptProv, NULL, NULL, ret = pCryptAcquireContextA(&envelopedInfo.hCryptProv, NULL, NULL,