Fix invalid access of display line end

When a line only contains non-range atoms we can end-up accessing
past the end atom.

Add a test that shows the issue when run with valgrind, it is
unfortunately quite hard to trigger a crash because the invalidly
accessed byte usually leads to the correct code path being taken
(when != DisplayAtom::Range) so we have only 1 in 255 chance of
triggerring a crash.

Fixes #4927
This commit is contained in:
Maxime Coste 2023-06-20 13:09:03 +10:00
parent e58592f00a
commit d43268fbeb
4 changed files with 9 additions and 1 deletions

View File

@ -1820,7 +1820,7 @@ struct ForwardHighlighterApplier
{
auto& line = *cur_line;
auto first = std::find_if(cur_atom, line.end(), [&](auto&& atom) { return atom.has_buffer_range() and atom.end() > begin; });
if (first->type() == DisplayAtom::Range and first->begin() < begin)
if (first != line.end() and first->type() == DisplayAtom::Range and first->begin() < begin)
first = ++line.split(first, begin);
auto idx = first - line.begin();

View File

@ -0,0 +1 @@
<a-l>

View File

@ -0,0 +1,4 @@
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

View File

@ -0,0 +1,3 @@
add-highlighter global/ column 60 red
add-highlighter buffer/regions regions
add-highlighter buffer/regions/ default-region fill green