diff options
author | Ingo Molnar <mingo@kernel.org> | 2024-11-13 03:41:59 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2024-11-13 03:42:14 +0100 |
commit | abe949ce0f9be943d8762f91e04b8588255f2f70 (patch) | |
tree | d479865f75acaa95fefbb20dccc502ca3cbd5d8d /lib/crypto/mpi/mpi-mul.c | |
parent | 035c5e2143f3edceeede1e99ff9cf8979c548dd5 (diff) | |
parent | 2d5404caa8c7bb5c4e0435f94b28834ae5456623 (diff) |
Merge tag 'v6.12-rc7' into x86/mm, to pick up fixes before applying new patches
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'lib/crypto/mpi/mpi-mul.c')
-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. */ |