crypt32: Remove unneeded assignments.

This commit is contained in:
Amine Khaldi 2009-12-15 17:23:10 +01:00 committed by Alexandre Julliard
parent 7692d926e8
commit 483d241559
1 changed files with 3 additions and 3 deletions

View File

@ -2854,7 +2854,7 @@ static void CertContext_SetKeyProvInfo(PCCERT_CONTEXT context,
{ {
info.pwszContainerName = CryptMemAlloc(len * info.pwszContainerName = CryptMemAlloc(len *
sizeof(WCHAR)); sizeof(WCHAR));
len = MultiByteToWideChar(CP_ACP, 0, szContainer, -1, MultiByteToWideChar(CP_ACP, 0, szContainer, -1,
info.pwszContainerName, len); info.pwszContainerName, len);
} }
} }
@ -2878,7 +2878,7 @@ static void CertContext_SetKeyProvInfo(PCCERT_CONTEXT context,
{ {
info.pwszProvName = CryptMemAlloc(len * info.pwszProvName = CryptMemAlloc(len *
sizeof(WCHAR)); sizeof(WCHAR));
len = MultiByteToWideChar(CP_ACP, 0, szProvider, -1, MultiByteToWideChar(CP_ACP, 0, szProvider, -1,
info.pwszProvName, len); info.pwszProvName, len);
} }
} }
@ -2898,7 +2898,7 @@ static void CertContext_SetKeyProvInfo(PCCERT_CONTEXT context,
pInfo = &info; pInfo = &info;
} }
ret = CertSetCertificateContextProperty(context, CERT_KEY_PROV_INFO_PROP_ID, CertSetCertificateContextProperty(context, CERT_KEY_PROV_INFO_PROP_ID,
0, pInfo); 0, pInfo);
if (pInfo == &info) if (pInfo == &info)