mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-04 04:58:00 +00:00
Bugzilla bug 119376: fixed the uninitialized variable 'rv' in
rsa_PrivateKeyOp.
This commit is contained in:
parent
7fccaa5b34
commit
4f95c4463a
@ -35,7 +35,7 @@
|
||||
/*
|
||||
* RSA key generation, public key op, private key op.
|
||||
*
|
||||
* $Id: rsa.c,v 1.29 2001/12/10 18:14:23 ian.mcgreer%sun.com Exp $
|
||||
* $Id: rsa.c,v 1.30 2002/02/07 01:00:31 wtc%netscape.com Exp $
|
||||
*/
|
||||
|
||||
#include "secerr.h"
|
||||
@ -663,7 +663,7 @@ rsa_PrivateKeyOp(RSAPrivateKey *key,
|
||||
{
|
||||
unsigned int modLen;
|
||||
unsigned int offset;
|
||||
SECStatus rv;
|
||||
SECStatus rv = SECSuccess;
|
||||
mp_err err;
|
||||
mp_int n, c, m;
|
||||
mp_int f, g;
|
||||
|
Loading…
x
Reference in New Issue
Block a user