Skip to content
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

input-bugfix-take-2: proper bugfix #182

Merged
merged 1 commit into from
Sep 26, 2019
Merged

input-bugfix-take-2: proper bugfix #182

merged 1 commit into from
Sep 26, 2019

Conversation

seliopou
Copy link
Member

This fixes the bug introduced by #181, which was a bugfix for a bug reported in #180.

Before #181, when a non-zero off into the current input buffer was provided, the loop was conservative in what it would consume: rather than attempting to consume characters in the range [off, off + len), it would only consider the characters in the range [0, len).

#181 changed this so that it considered the range [off, idx + len) where idx is the current position in the input buffer. This seemingly worked on simple parsers. However for more complex parsers this led to unsafe memory accesses when determining how much of the input to consume, and that resulted in a length that ran over the end of the input buffer. When an take_while* parser then tried to return the bytes to the user, a checked memory access would then fail.

This fixes the bug introduced by #181, which was a bugfix for a bug
reported in #180.
@seliopou seliopou merged commit cf6f5d3 into master Sep 26, 2019
@seliopou seliopou deleted the input-bugfix-take-2 branch September 26, 2019 03:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant