crypto: In crypto_add_alg(), 'exact' wants to be initialized to 0
authorJesper Juhl <jj@chaosbits.net>
Sun, 29 Jan 2012 22:39:22 +0000 (23:39 +0100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Sun, 5 Feb 2012 04:12:25 +0000 (15:12 +1100)
commit0cfdec7a65c98de6637e547a04a33969dc9c61b1
tree052e9b64882142a535e009f647235dadb0d9f1de
parent65a4a573b74f8f27e33a99c21a5a5d2fc4d82a1a
crypto: In crypto_add_alg(), 'exact' wants to be initialized to 0

We declare 'exact' without initializing it and then do:

[...]
if (strlen(p->cru_driver_name))
exact = 1;

if (priority && !exact)
return -EINVAL;

[...]

If the first 'if' is not true, then the second will test an
uninitialized 'exact'.
As far as I can tell, what we want is for 'exact' to be initialized to
0 (zero/false).

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Acked-by: Steffen Klassert <steffen.klassert@secunet.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/crypto_user.c