mirror of
https://github.com/cryb-to/cryb-to.git
synced 2024-11-22 05:35:46 +00:00
Always clear the negative flag in mpi_zero()
This commit is contained in:
parent
9042130830
commit
94471e9923
1 changed files with 1 additions and 1 deletions
|
@ -111,9 +111,9 @@ mpi_zero(cryb_mpi *X)
|
|||
MPI_FAST_INIT(X);
|
||||
} else if (X->msb != 0) {
|
||||
memset(X->words, 0, X->size);
|
||||
X->neg = 0;
|
||||
X->msb = 0;
|
||||
}
|
||||
X->neg = 0;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue