From 006237a33041ba329aa1ce4b6bb9d7c7499a5fd1 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 14 Nov 1996 09:52:21 +0000 Subject: [PATCH] Strings in record keys bound by IT_MAX_WORD. --- index/extract.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/index/extract.c b/index/extract.c index 2eb7fd5..2e0daea 100644 --- a/index/extract.c +++ b/index/extract.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: extract.c,v $ - * Revision 1.65 1996-11-14 08:57:56 adam + * Revision 1.66 1996-11-14 09:52:21 adam + * Strings in record keys bound by IT_MAX_WORD. + * + * Revision 1.65 1996/11/14 08:57:56 adam * Reduction of storeKeys area. * * Revision 1.64 1996/11/08 11:10:16 adam @@ -559,7 +562,7 @@ static void addRecordKey (const RecWord *p) case Word_Numeric: *dst++ = 'n'; } - for (i = 0; p->u.string[i]; i++) + for (i = 0; p->u.string[i] && i < IT_MAX_WORD-3; i++) *dst++ = p->u.string[i]; *dst++ = '\0'; -- 1.7.10.4