summaryrefslogtreecommitdiff
path: root/plugins/SpellChecker/src/dictionary.cpp
diff options
context:
space:
mode:
authorMikalaiR <nikolay.romanovich@narod.ru>2015-10-11 13:42:51 +0000
committerMikalaiR <nikolay.romanovich@narod.ru>2015-10-11 13:42:51 +0000
commit879b94d26b59990d5cc980decbfc51a71c9883f4 (patch)
treed7200329de750bbcc5357e0e2f1bbfe256dd9892 /plugins/SpellChecker/src/dictionary.cpp
parent7e67728d3ea7790e4aa7a8197fc458e672922051 (diff)
SpellChecker: minor bugfixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@15533 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SpellChecker/src/dictionary.cpp')
-rw-r--r--plugins/SpellChecker/src/dictionary.cpp2
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;