From 687e4c8a22ead1eab6bcb29cb2ec30f04d69aa56 Mon Sep 17 00:00:00 2001 From: Akinori Ito Date: Fri, 11 Jan 2002 02:24:13 +0000 Subject: 2002-01-11 Akinori Ito * [w3m-dev 02819] * regex.c (RegexMatch): loop condition changed (from < to <= ) * regex.c (regmatch_iter): end condition changed (from >= to >) * search.c (forwardSearch): next search fix --- search.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'search.c') diff --git a/search.c b/search.c index 9e54c85..2b04c34 100644 --- a/search.c +++ b/search.c @@ -1,4 +1,4 @@ -/* $Id: search.c,v 1.5 2001/12/23 14:44:00 ukai Exp $ */ +/* $Id: search.c,v 1.6 2002/01/11 02:24:13 a-ito Exp $ */ #include "fm.h" #include "regex.h" @@ -23,7 +23,8 @@ forwardSearch(Buffer *buf, char *str) if (l->propBuf[pos] & PC_KANJI2) pos++; #endif - if (regexMatch(&l->lineBuf[pos], l->len - pos, 0) == 1) { + if (pos < l->len && + regexMatch(&l->lineBuf[pos], l->len - pos, 0) == 1) { matchedPosition(&first, &last); buf->pos = first - l->lineBuf; arrangeCursor(buf); -- cgit v1.2.3