summaryrefslogtreecommitdiff
path: root/crypto/testmgr.c
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2009-10-27 19:04:42 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2009-10-27 19:04:42 +0800
commit65f568a173c6d54fffaa1a1c4bcb5d5d1376638b (patch)
treefc19a30d4b2a6021aceb7c0bd422c60b00976303 /crypto/testmgr.c
parent0739e06aaca5fe2c3389eb4123e5c6d183a6a322 (diff)
downloadlinux-crypto-65f568a173c6d54fffaa1a1c4bcb5d5d1376638b.tar.gz
linux-crypto-65f568a173c6d54fffaa1a1c4bcb5d5d1376638b.zip
crypto: testmgr - Fix warning
crypto/testmgr.c: In function ‘test_cprng’: crypto/testmgr.c:1204: warning: ‘err’ may be used uninitialized in this function Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/testmgr.c')
-rw-r--r--crypto/testmgr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index 6d5b7466..1f2357bc 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -1201,7 +1201,7 @@ static int test_cprng(struct crypto_rng *tfm, struct cprng_testvec *template,
unsigned int tcount)
{
const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
- int err, i, j, seedsize;
+ int err = 0, i, j, seedsize;
u8 *seed;
char result[32];