diff options
author | George Hazan <george.hazan@gmail.com> | 2014-05-03 16:27:05 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-05-03 16:27:05 +0000 |
commit | d5a062a77c2da82b8f99aefcbaaa2ac131266ee5 (patch) | |
tree | a7931deb1380402a342af6c6d409de9b7359554a /plugins | |
parent | 318557c348b1df460bafc188fb65c2be6b73bff4 (diff) |
crash fix for adding the first sub into a meta
git-svn-id: http://svn.miranda-ng.org/main/trunk@9116 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Db3x_mmap/src/dbsettings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Db3x_mmap/src/dbsettings.cpp b/plugins/Db3x_mmap/src/dbsettings.cpp index c77889bdf3..f87eb3b221 100644 --- a/plugins/Db3x_mmap/src/dbsettings.cpp +++ b/plugins/Db3x_mmap/src/dbsettings.cpp @@ -223,7 +223,7 @@ LBL_Seek: }
// try to get the missing mc setting from the active sub
- if (cc && cc->IsMeta()) {
+ if (cc && cc->IsMeta() && strcmp(szModule, "CList")) {
contactID = db_mc_getDefault(contactID);
goto LBL_Seek;
}
|