提交 fa4ef8a6 编写于 作者: F Felipe Contreras 提交者: Herbert Xu

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: NFelipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
上级 2024e7d6
......@@ -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];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册