You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix TOML parse failure when number token hits buffer edge (#95)
When a number token is exactly at the end of the lexer text buffer, the parser would advance the lexer, triggering a buffer refill, before the number is parsed from the buffer. This patch moves the advance operation to come after parsing, which resolves the issue.
Also tracked as FasterXML/jackson-dataformats-text#356Fixes#93
Co-authored-by: Tim Yates <[email protected]>
0 commit comments