add cert cache persistence

This commit is contained in:
toddouska
2013-05-02 11:34:26 -07:00
parent bc1a6282eb
commit a0c630b4ee
8 changed files with 578 additions and 11 deletions

View File

@@ -2844,9 +2844,12 @@ Signer* MakeSigner(void* heap)
Signer* signer = (Signer*) XMALLOC(sizeof(Signer), heap,
DYNAMIC_TYPE_SIGNER);
if (signer) {
signer->name = 0;
signer->publicKey = 0;
signer->next = 0;
signer->pubKeySize = 0;
signer->keyOID = 0;
signer->publicKey = NULL;
signer->nameLen = 0;
signer->name = NULL;
signer->next = NULL;
}
(void)heap;