]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commit - drivers/crypto/chelsio/chcr_algo.c
crypto: chcr - Fix error handling related to 'chcr_alloc_shash'
authorChristophe Jaillet <christophe.jaillet@wanadoo.fr>
Thu, 13 Apr 2017 18:25:15 +0000 (20:25 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 21 Apr 2017 12:30:47 +0000 (20:30 +0800)
commitec1bca941a36961933484be0fce3e71981815bad
treeb47a106d06d61aa30ed6aa156707a37e31741cec
parent69b348449bda0f9588737539cfe135774c9939a7
crypto: chcr - Fix error handling related to 'chcr_alloc_shash'

Up to now, 'crypto_alloc_shash()' may return a valid pointer, an error
pointer or NULL (in case of invalid parameter)
Update it to always return an error pointer in case of error. It now
returns ERR_PTR(-EINVAL) instead of NULL in case of invalid parameter.

This simplifies error handling.

Also fix a crash in 'chcr_authenc_setkey()' if 'chcr_alloc_shash()'
returns an error pointer and the "goto out" path is taken.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/chelsio/chcr_algo.c