1
0
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.

(cherry picked from commit c646c860cdb4ba641bd36f0469b752fec93962fd)
(cherry picked from commit 9561d8d0fd0a134e6dbdd463b4d0f3924e5a0a61)
This commit is contained in:
Witold Filipczyk 2007-08-20 09:01:49 +02:00 committed by Kalle Olavi Niemitalo
parent 175f355320
commit d1d8c0632a

@ -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];