mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-06 14:05:02 +00:00
Avoid signed overflow with crazy exponents. Fixes #27.
This commit is contained in:
parent
d97389aa2d
commit
92551724cf
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue