Messages in this thread |  | | Subject | Re: [PATCH] crypto: ccp - fix error handling | From | Tom Lendacky <> | Date | Tue, 22 Sep 2020 08:41:06 -0500 |
| |
On 9/21/20 6:34 AM, Pavel Machek wrote: > Fix resource leak in error handling.
Does it need a Fixes: tag?
Thanks, Tom
> > Signed-off-by: Pavel Machek (CIP) <pavel@denx.de> > > diff --git a/drivers/crypto/ccp/ccp-ops.c b/drivers/crypto/ccp/ccp-ops.c > index bd270e66185e..40869ea1ed20 100644 > --- a/drivers/crypto/ccp/ccp-ops.c > +++ b/drivers/crypto/ccp/ccp-ops.c > @@ -1744,7 +1744,7 @@ ccp_run_sha_cmd(struct ccp_cmd_queue *cmd_q, struct ccp_cmd *cmd) > break; > default: > ret = -EINVAL; > - goto e_ctx; > + goto e_data; > } > } else { > /* Stash the context */ >
|  |