From 2036ef157e7743223a4f52f791cc821d2d45695d Mon Sep 17 00:00:00 2001 From: Tobias Weimer Date: Sun, 23 Aug 2015 09:22:40 +0000 Subject: SpellChecker: - Minor fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@15016 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SpellChecker/src/dictionary.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'plugins/SpellChecker/src/dictionary.cpp') diff --git a/plugins/SpellChecker/src/dictionary.cpp b/plugins/SpellChecker/src/dictionary.cpp index 7c074fd159..bbdb192c89 100644 --- a/plugins/SpellChecker/src/dictionary.cpp +++ b/plugins/SpellChecker/src/dictionary.cpp @@ -370,19 +370,17 @@ protected: FILE *file = _tfopen(filename, _T("rb")); if (file != NULL) { char tmp[1024]; - char c; - int pos = 0; + int c, pos = 0; while ((c = fgetc(file)) != EOF) { if (c == '\n' || c == '\r' || pos >= _countof(tmp) - 1) { if (pos > 0) { tmp[pos] = '\0'; hunspell->add(tmp); + pos = 0; } - - pos = 0; } else { - tmp[pos] = c; + tmp[pos] = (char)c; pos++; } } -- cgit v1.2.3