diff options
author | nyamatongwe <devnull@localhost> | 2007-03-19 10:59:21 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-03-19 10:59:21 +0000 |
commit | f40ac51ea7cd96eed080ab6a0e7b2c74dc09b3b3 (patch) | |
tree | 468b9998ce76c129e856a0e747c2f605f89d9e84 /src | |
parent | 871a189453d7912e065fe6d439e057a5c749745a (diff) | |
download | scintilla-mirror-f40ac51ea7cd96eed080ab6a0e7b2c74dc09b3b3.tar.gz |
Undid last change as there was no example case that demonstrated
reading of uninitialized values and the buffer being initialized was quite
large.
Diffstat (limited to 'src')
-rw-r--r-- | src/RESearch.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/RESearch.cxx b/src/RESearch.cxx index ce349e395..6dc5941bb 100644 --- a/src/RESearch.cxx +++ b/src/RESearch.cxx @@ -257,8 +257,6 @@ 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() { |