Bugzilla bug 119376: fixed the uninitialized variable 'rv' in
rsa_PrivateKeyOp. git-svn-id: svn://10.0.0.236/trunk@113855 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
1da965c1f6
commit
c2cd29e367
@ -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