- Resolves: Bug 716076 - FTBFS crypto-utils-2.4.1-27

- Remove variables which set but not used
This commit is contained in:
Elio Maldonado 2011-06-23 09:27:10 -07:00
parent 8e4a690780
commit 48d21ec8c0
1 changed files with 0 additions and 7 deletions

View File

@ -873,13 +873,11 @@ CreateCert(
void *extHandle;
SECItem *certDER;
PRArenaPool *arena = NULL;
SECItem reqDER;
CERTCertExtension **CRexts;
CERTCertificate *subjectCert = NULL;
CERTCertificateRequest *certReq = NULL;
SECStatus rv = SECSuccess;
reqDER.data = NULL;
do {
arena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE);
if (!arena) {
@ -1147,7 +1145,6 @@ SECStatus DecryptKey(
do {
SECAlgorithmID algid = epki->algorithm;
CK_MECHANISM_TYPE cryptoMechType;
CK_MECHANISM cryptoMech;
CK_ATTRIBUTE_TYPE operation = CKA_DECRYPT;
PK11SlotInfo *slot = NULL;
@ -1156,10 +1153,6 @@ SECStatus DecryptKey(
ERROR_BREAK;
}
cryptoMech.mechanism = PK11_GetPadMechanism(cryptoMechType);
cryptoMech.pParameter = cryptoParam ? cryptoParam->data : NULL;
cryptoMech.ulParameterLen = cryptoParam ? cryptoParam->len : 0;
slot = PK11_GetBestSlot(cryptoMechType, NULL);
if (!slot) {
ERROR_BREAK;