diff options
author | 2017-12-05 17:37:17 +0300 | |
---|---|---|
committer | 2017-12-06 15:49:26 +0100 | |
commit | aece09024414b54158e03aa45f4a4436e7cb996c (patch) | |
tree | 09be008cefe5ddd3e1e2590b3498853ef4414b64 | |
parent | Merge tag 'staging-4.15-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging (diff) | |
download | wireguard-linux-aece09024414b54158e03aa45f4a4436e7cb996c.tar.xz wireguard-linux-aece09024414b54158e03aa45f4a4436e7cb996c.zip |
staging: ccree: Uninitialized return in ssi_ahash_import()
The return value isn't initialized on some success paths.
Fixes: c5f39d07860c ("staging: ccree: fix leak of import() after init()")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/ccree/ssi_hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/ccree/ssi_hash.c b/drivers/staging/ccree/ssi_hash.c index 1799d3f26a9e..2035835b62dc 100644 --- a/drivers/staging/ccree/ssi_hash.c +++ b/drivers/staging/ccree/ssi_hash.c @@ -1769,7 +1769,7 @@ static int ssi_ahash_import(struct ahash_request *req, const void *in) struct device *dev = drvdata_to_dev(ctx->drvdata); struct ahash_req_ctx *state = ahash_request_ctx(req); u32 tmp; - int rc; + int rc = 0; memcpy(&tmp, in, sizeof(u32)); if (tmp != CC_EXPORT_MAGIC) { |