crypto: drbg - fix semicolon.cocci warnings
crypto/drbg.c:1637:39-40: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Stephan Mueller <smueller@chronox.de> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Acked-by: Stephan Mueller <smueller@chronox.de> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
5a7de97309
commit
88f1d316b9
1 changed files with 1 additions and 1 deletions
|
@ -1632,7 +1632,7 @@ static int drbg_fini_sym_kernel(struct drbg_state *drbg)
|
|||
drbg->ctr_handle = NULL;
|
||||
|
||||
if (drbg->ctr_req)
|
||||
skcipher_request_free(drbg->ctr_req);;
|
||||
skcipher_request_free(drbg->ctr_req);
|
||||
drbg->ctr_req = NULL;
|
||||
|
||||
kfree(drbg->ctr_null_value_buf);
|
||||
|
|
Loading…
Reference in a new issue