mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
move-link-up-line: segfault when cursor was below last line.
This commit is contained in:
parent
052f7a93bb
commit
c646c860cd
@ -616,6 +616,7 @@ move_link_up_line(struct session *ses, struct document_view *doc_view)
|
||||
min_y = vs->y - box->height;
|
||||
int_lower_bound(&min_y, 0);
|
||||
y1 = y = vs->y + ses->tab->y - box->y;
|
||||
int_upper_bound(&y, document->height - 1);
|
||||
for (y--; y >= min_y; y--) {
|
||||
struct link *link = document->lines1[y];
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user