From 7b88478227978a8d673b4dd0e05eee410cc33330 Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Mon, 29 Aug 2016 19:27:38 +0900 Subject: Prevent segfault for formUpdateBuffer Bug-Debian: https://github.com/tats/w3m/issues/13#issuecomment-242981906 --- form.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'form.c') diff --git a/form.c b/form.c index b56347b..20b7310 100644 --- a/form.c +++ b/form.c @@ -483,8 +483,8 @@ formUpdateBuffer(Anchor *a, Buffer *buf, FormItemList *form) spos = a->start.pos; epos = a->end.pos; } - if (a->start.line != a->end.line || spos > epos || epos > l->len) - epos = spos; + if (a->start.line != a->end.line || spos > epos || epos >= l->len) + break; pos = form_update_line(l, &p, spos, epos, COLPOS(l, epos) - col, rows > 1, form->type == FORM_INPUT_PASSWORD); -- cgit v1.2.3