Number conversion buffer size
gregjesl opened this issue · 1 comments
gregjesl commented
The string buffer currently used to convert numbers to strings is fixed:
Line 72 in 35592ed
Instead, the function should use the known maximum sizes of each type
gregjesl commented
snprintf
can be used to see if the buffer was too small: https://www.cplusplus.com/reference/cstdio/snprintf/