diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-24 12:58:03 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-24 12:58:03 +0000 |
commit | f5a3050597e3a64240f13eed79e0f7d46e1588f0 (patch) | |
tree | b23fda34cae38f83fa6c7f6e4b3f59e7eb3cf255 | |
parent | 4c183632962c0b0190108c99a94713b84f74fe64 (diff) |
this explicit destroy() is needed for the dynamic langpack reload
git-svn-id: http://svn.miranda-ng.org/main/trunk@7855 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | src/mir_core/langpack.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mir_core/langpack.cpp b/src/mir_core/langpack.cpp index 885b6c7f9e..a23e6311a6 100644 --- a/src/mir_core/langpack.cpp +++ b/src/mir_core/langpack.cpp @@ -597,6 +597,7 @@ void UnloadLangPackModule() int i;
for (i=0; i < lMuuids.getCount(); i++)
mir_free(lMuuids[i]);
+ lMuuids.destroy();
LangPackEntry *p = langPack.entry;
for (i=0; i < langPack.entryCount; i++, p++) {
|