Avoid signed overflow with crazy exponents. Fixes .

This commit is contained in:
Richard Knight 2021-06-01 18:23:53 +01:00
parent d97389aa2d
commit 92551724cf

View file

@ -523,7 +523,7 @@ const char* parse_float(const char* ptr, float* val)
double num;
double fra;
double div;
int eval;
unsigned int eval;
const double* powers;