BufReadPlus with tokens larger than the underlying buffer capacity #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
BufReadPlus::read_until_token() will not perform properly if the token is larger than the underlying buffer capacity.
This could be fixed without much code upheaval, with an extension of the
partialconcept.The buffer gets smaller and smaller as we parse bits off of it, and eventually it very well could be shorter than the size of the token. So this bug has been escalated now to P-high, as it is not just a rare possibility but actually very likely.
fixed in
26dd0b9683