Skip to content

Commit

Permalink
crypto: drbg - fix semicolon.cocci warnings
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Wu Fengguang authored and Herbert Xu committed Jun 20, 2016
1 parent 5a7de97 commit 88f1d31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/drbg.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 88f1d31

Please sign in to comment.