Skip to content

Commit a777c32

Browse files
committed
Merge tag 'v6.12-p4' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
Pull crypto fix from Herbert Xu: "Fix a regression in mpi that broke RSA" * tag 'v6.12-p4' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: crypto: lib/mpi - Fix an "Uninitialized scalar variable" issue
2 parents 42f7652 + cd84339 commit a777c32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/crypto/mpi/mpi-mul.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ int mpi_mul(MPI w, MPI u, MPI v)
2121
int usign, vsign, sign_product;
2222
int assign_wp = 0;
2323
mpi_ptr_t tmp_limb = NULL;
24-
int err;
24+
int err = 0;
2525

2626
if (u->nlimbs < v->nlimbs) {
2727
/* Swap U and V. */

0 commit comments

Comments
 (0)