mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
move-link-up-line: segfault when cursor was below last line.
(cherry picked from commit c646c860cd
)
This commit is contained in:
parent
1a9112945b
commit
9561d8d0fd
@ -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…
Reference in New Issue
Block a user