diff options
author | Qianqiang Liu <qianqiang.liu@163.com> | 2024-09-13 22:07:42 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2024-10-16 13:38:16 +0800 |
commit | cd843399d706411ff80520fb7883afeeefa76e98 (patch) | |
tree | 552a69cf1f28cea9e11a2ce0929eb2d71f1c291f /lib | |
parent | e845d2399a00f866f287e0cefbd4fc7d8ef0d2f7 (diff) | |
download | linux-stable-cd843399d706411ff80520fb7883afeeefa76e98.tar.gz linux-stable-cd843399d706411ff80520fb7883afeeefa76e98.tar.bz2 linux-stable-cd843399d706411ff80520fb7883afeeefa76e98.zip |
crypto: lib/mpi - Fix an "Uninitialized scalar variable" issue
The "err" variable may be returned without an initialized value.
Fixes: 8e3a67f2de87 ("crypto: lib/mpi - Add error checks to extension")
Signed-off-by: Qianqiang Liu <qianqiang.liu@163.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/crypto/mpi/mpi-mul.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/mpi/mpi-mul.c b/lib/crypto/mpi/mpi-mul.c index 892a246216b9..7e6ff1ce3e9b 100644 --- a/lib/crypto/mpi/mpi-mul.c +++ b/lib/crypto/mpi/mpi-mul.c @@ -21,7 +21,7 @@ int mpi_mul(MPI w, MPI u, MPI v) int usign, vsign, sign_product; int assign_wp = 0; mpi_ptr_t tmp_limb = NULL; - int err; + int err = 0; if (u->nlimbs < v->nlimbs) { /* Swap U and V. */ |