On Mon, Jun 20, 2011 at 1:33 PM, Jeff Layton <[email protected]> wrote:
> This is currently leaked in the rc == 0 case.
>
> Reported-by: J. Bruce Fields <[email protected]>
> Signed-off-by: Jeff Layton <[email protected]>
> ---
>  fs/cifs/smbencrypt.c |    6 ++----
>  1 files changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/fs/cifs/smbencrypt.c b/fs/cifs/smbencrypt.c
> index 1525d5e..1c5b770 100644
> --- a/fs/cifs/smbencrypt.c
> +++ b/fs/cifs/smbencrypt.c
> @@ -90,12 +90,10 @@ smbhash(unsigned char *out, const unsigned char *in, 
> unsigned char *key)
>        sg_init_one(&sgout, out, 8);
>
>        rc = crypto_blkcipher_encrypt(&desc, &sgout, &sgin, 8);
> -       if (rc) {
> +       if (rc)
>                cERROR(1, "could not encrypt crypt key rc: %d\n", rc);
> -               crypto_free_blkcipher(tfm_des);
> -               goto smbhash_err;
> -       }
>
> +       crypto_free_blkcipher(tfm_des);
>  smbhash_err:
>        return rc;
>  }
> --
> 1.7.5.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-cifs" in
> the body of a message to [email protected]
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

Correct.
Reviewed-by: Shirish Pargaonkar <[email protected]>
--
To unsubscribe from this list: send the line "unsubscribe linux-cifs" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to