Prevent negative array index for marks in shiftAnchorPosition()
Bug-Debian: https://github.com/tats/w3m/issues/62
This commit is contained in:
3
anchor.c
3
anchor.c
@@ -551,7 +551,8 @@ shiftAnchorPosition(AnchorList *al, HmarkerList *hl, int line, int pos,
|
|||||||
break;
|
break;
|
||||||
if (a->start.pos > pos) {
|
if (a->start.pos > pos) {
|
||||||
a->start.pos += shift;
|
a->start.pos += shift;
|
||||||
if (hl && hl->marks && hl->marks[a->hseq].line == line)
|
if (hl && hl->marks &&
|
||||||
|
a->hseq >= 0 && hl->marks[a->hseq].line == line)
|
||||||
hl->marks[a->hseq].pos = a->start.pos;
|
hl->marks[a->hseq].pos = a->start.pos;
|
||||||
}
|
}
|
||||||
if (a->end.pos >= pos)
|
if (a->end.pos >= pos)
|
||||||
|
Reference in New Issue
Block a user