aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexScriptol.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lexers/LexScriptol.cxx')
-rw-r--r--lexers/LexScriptol.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexScriptol.cxx b/lexers/LexScriptol.cxx
index 4b9192314..31747b88e 100644
--- a/lexers/LexScriptol.cxx
+++ b/lexers/LexScriptol.cxx
@@ -27,7 +27,7 @@ using namespace Scintilla;
static void ClassifyWordSol(unsigned int start, unsigned int end, WordList &keywords, Accessor &styler, char *prevWord)
{
- char s[100];
+ char s[100] = "";
bool wordIsNumber = isdigit(styler[start]) != 0;
for (unsigned int i = 0; i < end - start + 1 && i < 30; i++)
{