Fix crash in paragraph selection

This commit is contained in:
Maxime Coste 2014-06-14 14:07:03 +01:00
parent d5b1605df5
commit fa5b6b716d

View File

@ -346,9 +346,7 @@ Selection select_paragraph(const Buffer& buffer, const Selection& selection, Obj
++last;
while (last != buffer.end())
{
char cur = *last;
char prev = *(last-1);
if (is_eol(cur) and is_eol(prev))
if (last != buffer.begin() and is_eol(*last) and is_eol(*(last-1)))
{
if (not (flags & ObjectFlags::Inner))
skip_while(last, buffer.end(), is_eol);