diff options
| author | nyamatongwe <devnull@localhost> | 2010-03-14 03:32:32 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2010-03-14 03:32:32 +0000 |
| commit | a75b61086a39ed0a45bcc3e1ff994e223b77c45c (patch) | |
| tree | 087d1f930157ee36121dc378b5cad81d59044d5b | |
| parent | 695fa00d0dc38b0e5ea1367b7b2c04d283ab070e (diff) | |
| download | scintilla-mirror-a75b61086a39ed0a45bcc3e1ff994e223b77c45c.tar.gz | |
Avoid warning about uninitialised member.
| -rw-r--r-- | src/RESearch.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/RESearch.cxx b/src/RESearch.cxx index 0c400450e..a5dbf3678 100644 --- a/src/RESearch.cxx +++ b/src/RESearch.cxx @@ -248,6 +248,7 @@ const char bitarr[] = { 1, 2, 4, 8, 16, 32, 64, '\200' }; */ RESearch::RESearch(CharClassify *charClassTable) { + failure = 0; charClass = charClassTable; Init(); } |
