crypt32: Get rid of an unused key.

This commit is contained in:
Juan Lang 2007-10-18 20:48:01 -07:00 committed by Alexandre Julliard
parent 6763841e19
commit cc88619f86
1 changed files with 0 additions and 3 deletions

View File

@ -801,7 +801,6 @@ typedef struct _CSignerHandles
{
HCRYPTHASH contentHash;
HCRYPTHASH authAttrHash;
HCRYPTKEY key;
} CSignerHandles;
typedef struct _CSignedMsgData
@ -858,8 +857,6 @@ static void CSignedMsgData_CloseHandles(CSignedMsgData *msg_data)
for (i = 0; i < msg_data->info->cSignerInfo; i++)
{
if (msg_data->signerHandles[i].key)
CryptDestroyKey(msg_data->signerHandles[i].key);
if (msg_data->signerHandles[i].contentHash)
CryptDestroyHash(msg_data->signerHandles[i].contentHash);
if (msg_data->signerHandles[i].authAttrHash)