aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2007-03-11 22:48:21 +0000
committernyamatongwe <unknown>2007-03-11 22:48:21 +0000
commitb7cfea281e94486612523b26d30d7a4858e0bd9b (patch)
tree67f811d2ec3714219ce54b69037ab5583787ae99 /src
parent0b60062b249085d17bf49932ab4656eb8ea19094 (diff)
downloadscintilla-mirror-b7cfea281e94486612523b26d30d7a4858e0bd9b.tar.gz
Ensure initialisation of nfa member to make BoundsChecker happy.
Diffstat (limited to 'src')
-rw-r--r--src/RESearch.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/RESearch.cxx b/src/RESearch.cxx
index 6dc5941bb..ce349e395 100644
--- a/src/RESearch.cxx
+++ b/src/RESearch.cxx
@@ -257,6 +257,8 @@ void RESearch::Init() {
pat[i] = 0;
for (int j = 0; j < BITBLK; j++)
bittab[j] = 0;
+ for (int k=0; k<MAXNFA; k++)
+ nfa[k] = 0;
}
void RESearch::Clear() {