summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-10-28 15:22:34 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-10-28 15:22:34 +0000
commit671e64f5d5461de259f8cadc38bb5014d9dc9e4d (patch)
tree0640efca0b0bac744da1fc2fdae9d023007ae1e1
parent0cabe46ea8b9b27ed28db69e3d03b0df19c0ad8e (diff)
crash fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@2100 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/BasicHistory/src/HistoryWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/BasicHistory/src/HistoryWindow.cpp b/plugins/BasicHistory/src/HistoryWindow.cpp
index f7ef91a056..c16db18830 100644
--- a/plugins/BasicHistory/src/HistoryWindow.cpp
+++ b/plugins/BasicHistory/src/HistoryWindow.cpp
@@ -2200,7 +2200,7 @@ void HistoryWindow::DoImport(IImport::ImportType type)
while(_hContact)
{
contacts.push_back(_hContact);
- _hContact = db_find_next(hContact);
+ _hContact = db_find_next(_hContact);
}
bool changeContact = false;