projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2024e7d
)
crypto: testmgr - Fix warning
author
Felipe Contreras
<felipe.contreras@gmail.com>
Tue, 27 Oct 2009 11:04:42 +0000
(19:04 +0800)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Tue, 27 Oct 2009 11:04:42 +0000
(19:04 +0800)
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>
crypto/testmgr.c
patch
|
blob
|
history
diff --git
a/crypto/testmgr.c
b/crypto/testmgr.c
index 6d5b746637be226da5d9aac78af39a9851188464..1f2357bc6424dc7b16c0c11c165e53f047f3da28 100644
(file)
--- 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];