diff options
author | Jiri Kosina <jkosina@suse.com> | 2024-11-18 21:31:09 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.com> | 2024-11-18 21:31:09 +0100 |
commit | 873c578324c7082677303e2921b71fe0f5737ccc (patch) | |
tree | 40ffb8ce94497874ff7af9af8ff7ada6f7048c1e /lib/crypto/mpi/mpi-mul.c | |
parent | f33e46a0c6bddd341d0989484a2546bba7ac4a3c (diff) | |
parent | 8ee0f23e2672f004e217b38d4fac956cee251c7f (diff) |
Merge branch 'for-6.13/steelseries' into for-linus
- bugfixes for Steelseries Arctis 1 battery level handling (Bastien Nocera)
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. */ |