diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-01-26 22:40:27 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-01-26 22:40:27 -0600 |
commit | 8df4ce0ebe1240ed8f6def3af8f810e3f207555f (patch) | |
tree | 174cb60528cad6e07293e0b7be0be107489b850a /comphelper/source | |
parent | 0c9e4d9b223a0593686bee800484de3c23095d4f (diff) |
coverity#1130481 : Uninitialized scalar field
Change-Id: I41025a3dfe16af9417b1ae8c7668c76cb501c7b9
Diffstat (limited to 'comphelper/source')
-rw-r--r-- | comphelper/source/misc/syntaxhighlight.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/comphelper/source/misc/syntaxhighlight.cxx b/comphelper/source/misc/syntaxhighlight.cxx index 580f2842c8b3..012dd9ee9dff 100644 --- a/comphelper/source/misc/syntaxhighlight.cxx +++ b/comphelper/source/misc/syntaxhighlight.cxx @@ -658,6 +658,7 @@ SyntaxHighlighter::Tokenizer::Tokenizer( HighlighterLanguage aLang ): aLanguage( aCharTypeTab[(int)'\n'] |= CHAR_EOL; ppListKeyWords = NULL; + nKeyWordCount = 0; } SyntaxHighlighter::Tokenizer::~Tokenizer( void ) |