Bugzilla bug 119376: fixed the uninitialized variable 'rv' in

rsa_PrivateKeyOp.
This commit is contained in:
wtc%netscape.com 2002-02-07 01:00:31 +00:00
Родитель 7fccaa5b34
Коммит 4f95c4463a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;