diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2009-10-27 07:04:42 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2009-10-27 07:04:42 -0400 |
commit | fa4ef8a6af4745bbf3a25789bc7d4f14a3a6d803 (patch) | |
tree | cf031d025b978358b32c8390904510588f6955ae /crypto | |
parent | 2024e7d6804b3f6251b28126eceb7f6bf2e3a4e8 (diff) |
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')
-rw-r--r-- | crypto/testmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c index 6d5b746637be..1f2357bc6424 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, | |||
1201 | unsigned int tcount) | 1201 | unsigned int tcount) |
1202 | { | 1202 | { |
1203 | const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm)); | 1203 | const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm)); |
1204 | int err, i, j, seedsize; | 1204 | int err = 0, i, j, seedsize; |
1205 | u8 *seed; | 1205 | u8 *seed; |
1206 | char result[32]; | 1206 | char result[32]; |
1207 | 1207 | ||