-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avoid fallback routine buffer overruns #46
Conversation
c6c9086
to
78cd508
Compare
@pdimov I bumped up the statically allocated array size form 256 to 1024, and added handling for a dynamic array using |
You should merge/rebase the |
The force push was a rebase onto develop so I have it, and there are no new failures. |
Closes: #45
std::strtod
does not accept a size argument so when parsing a buffer with valid contents pastlast
the results would be incorrect. Locally ran the benchmarks from #44 that caused the linked issue, and they are resolved.