mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
crypto: dh - Consistenly return negative error codes
Fix the single instance where a positive EINVAL was returned. Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
109e23bd10
commit
8edda7d22a
@ -118,7 +118,7 @@ static int dh_compute_value(struct kpp_request *req)
|
|||||||
if (req->src) {
|
if (req->src) {
|
||||||
base = mpi_read_raw_from_sgl(req->src, req->src_len);
|
base = mpi_read_raw_from_sgl(req->src, req->src_len);
|
||||||
if (!base) {
|
if (!base) {
|
||||||
ret = EINVAL;
|
ret = -EINVAL;
|
||||||
goto err_free_val;
|
goto err_free_val;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user