summaryrefslogtreecommitdiff
path: root/plugins/SpellChecker/src/hunspell/affixmgr.cxx
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-04-14 16:57:07 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-04-14 16:57:07 +0000
commit4c0a9cfe95004f1fc934b69aa65cf2bd8a3f46ac (patch)
treec0f797d426c1adb622574d64cc7a6875b4c07d9a /plugins/SpellChecker/src/hunspell/affixmgr.cxx
parent657e6203b0435e74d91d1e756eb55dd9729f447e (diff)
fix for two mem leaks in hunspell
git-svn-id: http://svn.miranda-ng.org/main/trunk@12820 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SpellChecker/src/hunspell/affixmgr.cxx')
-rw-r--r--plugins/SpellChecker/src/hunspell/affixmgr.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/SpellChecker/src/hunspell/affixmgr.cxx b/plugins/SpellChecker/src/hunspell/affixmgr.cxx
index bd998f6369..6f2ae6ccdd 100644
--- a/plugins/SpellChecker/src/hunspell/affixmgr.cxx
+++ b/plugins/SpellChecker/src/hunspell/affixmgr.cxx
@@ -312,7 +312,10 @@ int AffixMgr::parse_file(const char * affpath, const char * key)
utf8 = 1;
#ifndef OPENOFFICEORG
#ifndef MOZILLA_CLIENT
- if (initialize_utf_tbl()) return 1;
+ if (initialize_utf_tbl()) {
+ finishFileMgr(afflst);
+ return 1;
+ }
#endif
#endif
}