-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Rope code appears to do a string overrun #2236
Comments
Paging @Yoric |
I'll take a look. |
There is some discussion on IRC that maybe we should just pitch the rope code as it exists now. |
@msullivan agreed. The code is pretty outdated and the work required to modernize it would probably be similar to the work needed to just re-write it. When I was looking through it, it seemed to be doing some very strange things that I don't think are even close to being safe, so there's that too. |
rustup I feel like tests became a *lot* slower. I am not sure what is going on and don't have time to debug right now.
In commit 956bc77 I had to disable one of the rope tests. The purpose of that commit was to fix up a bug in the way operator [] works on strings. In particular it used to let you index up to and including the trailing null; now it considers access to the null byte an index overrun and fails.
I tried to figure out exactly what was going on in the rope code for quite a while, and tried adjusting a number of obvious-looking things, but to no avail. I'm not really good with boundary-case arithmetic (are any of us?) and the rope module is a maze of such arithmetic.
Sharper minds requested to find the bug. Meanwhile I marked the rope test in question (
char_at1
) as ignored. The others seem to work.The text was updated successfully, but these errors were encountered: