diff options
Diffstat (limited to 'plugins/SpellChecker/src/dictionary.cpp')
-rw-r--r-- | plugins/SpellChecker/src/dictionary.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SpellChecker/src/dictionary.cpp b/plugins/SpellChecker/src/dictionary.cpp index c21507ac6d..aecca478b1 100644 --- a/plugins/SpellChecker/src/dictionary.cpp +++ b/plugins/SpellChecker/src/dictionary.cpp @@ -812,7 +812,7 @@ void GetDictsInfo(LIST<Dictionary> &dicts) void GetHunspellDictionariesFromFolder(LIST<Dictionary> &dicts, TCHAR *path, TCHAR *user_path, TCHAR *source) { // Load the language files and create an array with then - TCHAR file[1024]; + TCHAR file[1024] = { 0 }; mir_sntprintf(file, _T("%s\\*.dic"), path); BOOL found = FALSE; |