From f31b347624a0c696df1945e4f88725d1e01eb8f9 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 31 May 2012 15:07:34 +0200 Subject: [PATCH 1/1] Dict: fix out-of-bounds for long terms Only happened due to increased IT_MAX_WORD, so nobody would be affected by this problem before. --- dict/lookgrep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dict/lookgrep.c b/dict/lookgrep.c index ebd54b7..f480029 100644 --- a/dict/lookgrep.c +++ b/dict/lookgrep.c @@ -412,7 +412,7 @@ int dict_lookup_grep(Dict dict, const char *pattern, int range, void *client, mc = mk_MatchContext(dfa, range); - Rj = (MatchWord *) xcalloc((MAX_LENGTH+1) * mc->n, sizeof(*Rj)); + Rj = (MatchWord *) xcalloc((MAX_LENGTH+2) * mc->fact, sizeof(*Rj)); set_bit (mc, Rj, 0, 0); for (d = 1; d<=mc->range; d++) -- 1.7.10.4