nbsdx/SimpleJSON

Error Parsing numbers in scientific representation

nwrkbiz opened this issue · 0 comments

See:

c = str[ offset++ ];

Should be:
c = str[ offset ];

No increment of offset should happen here, otherwise parsing of numbers in scientific representation will fail.