Skip to content

Commit

Permalink
Bugzilla bug 219982: removed an unused local variable. (The function …
Browse files Browse the repository at this point in the history
…call

is needed for its side effect.)  Thanks to timeless@bemail.org and
Serge GAUTHERIE <gautheri@noos.fr> for the patch.  r=wtc.
  • Loading branch information
wchang0222%aol.com committed Dec 17, 2003
1 parent 608afdc commit 2254cec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion security/nss/lib/certdb/certdb.c
Expand Up @@ -2598,7 +2598,7 @@ CERT_FilterCertListByUsage(CERTCertList *certList, SECCertUsage usage,
* takes trust flags into consideration. Should probably
* fix the cert decoding code to do this.
*/
PRBool dummyret = CERT_IsCACert(node->cert, &certType);
(void)CERT_IsCACert(node->cert, &certType);
} else {
certType = node->cert->nsCertType;
}
Expand Down

0 comments on commit 2254cec

Please sign in to comment.