cryptdlg: Remove an unused variable.
This commit is contained in:
parent
e402260db4
commit
4ec6979825
|
@ -535,7 +535,7 @@ static BOOL CRYPT_FormatCPS(DWORD dwCertEncodingType,
|
||||||
pbEncoded, cbEncoded, CRYPT_DECODE_ALLOC_FLAG, NULL, &cpsValue, &size)))
|
pbEncoded, cbEncoded, CRYPT_DECODE_ALLOC_FLAG, NULL, &cpsValue, &size)))
|
||||||
{
|
{
|
||||||
LPCWSTR headingSep, sep;
|
LPCWSTR headingSep, sep;
|
||||||
DWORD headingSepLen, sepLen;
|
DWORD sepLen;
|
||||||
|
|
||||||
if (dwFormatStrType & CRYPT_FORMAT_STR_MULTI_LINE)
|
if (dwFormatStrType & CRYPT_FORMAT_STR_MULTI_LINE)
|
||||||
{
|
{
|
||||||
|
@ -547,8 +547,8 @@ static BOOL CRYPT_FormatCPS(DWORD dwCertEncodingType,
|
||||||
headingSep = colonSpace;
|
headingSep = colonSpace;
|
||||||
sep = commaSep;
|
sep = commaSep;
|
||||||
}
|
}
|
||||||
|
|
||||||
sepLen = strlenW(sep);
|
sepLen = strlenW(sep);
|
||||||
headingSepLen = strlenW(headingSep);
|
|
||||||
|
|
||||||
if (dwFormatStrType & CRYPT_FORMAT_STR_MULTI_LINE)
|
if (dwFormatStrType & CRYPT_FORMAT_STR_MULTI_LINE)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue