mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 09:57:32 +09:00
Update NSS to 3.32.1-RTM
This commit is contained in:
parent
f29876f120
commit
c91ef9012b
512 changed files with 83203 additions and 16839 deletions
|
|
@ -205,7 +205,11 @@ mp_exptmod_f(const mp_int *montBase,
|
|||
dTmpSize = 2 * oddPowSize;
|
||||
dSize = sizeof(double) * (nLen * 4 + 1 +
|
||||
((odd_ints + 1) * oddPowSize) + dTmpSize);
|
||||
dBuf = (double *)malloc(dSize);
|
||||
dBuf = malloc(dSize);
|
||||
if (!dBuf) {
|
||||
res = MP_MEM;
|
||||
goto CLEANUP;
|
||||
}
|
||||
dm1 = dBuf; /* array of d32 */
|
||||
dn = dBuf + nLen; /* array of d32 */
|
||||
dSqr = dn + nLen; /* array of d32 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue