Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/jdk.crypto.ec/share/native/libsunec/impl/mpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1727,7 +1727,7 @@ int mp_cmp_mag(mp_int *a, mp_int *b)
*/
int mp_cmp_int(const mp_int *a, long z, int kmflag)
{
mp_int tmp;
mp_int tmp = {0};
int out;

ARGCHK(a != NULL, MP_EQ);
Expand Down