mirror of
https://github.com/torvalds/linux.git
synced 2025-11-01 09:09:47 +02:00
When the mpi_ec_ctx structure is initialized, some fields are not
cleared, causing a crash when referencing the field when the
structure was released. Initially, this issue was ignored because
memory for mpi_ec_ctx is allocated with the __GFP_ZERO flag.
For example, this error will be triggered when calculating the
Za value for SM2 separately.
Fixes:
|
||
|---|---|---|
| .. | ||
| ec.c | ||
| generic_mpih-add1.c | ||
| generic_mpih-lshift.c | ||
| generic_mpih-mul1.c | ||
| generic_mpih-mul2.c | ||
| generic_mpih-mul3.c | ||
| generic_mpih-rshift.c | ||
| generic_mpih-sub1.c | ||
| longlong.h | ||
| Makefile | ||
| mpi-add.c | ||
| mpi-bit.c | ||
| mpi-cmp.c | ||
| mpi-div.c | ||
| mpi-inline.h | ||
| mpi-internal.h | ||
| mpi-inv.c | ||
| mpi-mod.c | ||
| mpi-mul.c | ||
| mpi-pow.c | ||
| mpi-sub-ui.c | ||
| mpicoder.c | ||
| mpih-cmp.c | ||
| mpih-div.c | ||
| mpih-mul.c | ||
| mpiutil.c | ||