You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In file modp_numtoa.c at line
unsigned long uvalue = (value < 0) ? -value : value;
input is converted to 32 bit integer.
Solution:
uint64_t uvalue = (value < 0) ? -value : value;
Original issue reported on code.google.com by [email protected] on 20 Jun 2013 at 8:37