summaryrefslogtreecommitdiff
path: root/plugins/MetaContacts/meta_utils.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-06-23 14:21:55 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-06-23 14:21:55 +0000
commit8ada609a501363add4c00dda936025712171fb00 (patch)
treee5936371dd88e18c4a0fc30cec34cbee02dc97b5 /plugins/MetaContacts/meta_utils.cpp
parentc507a151a8011784ba37228d33610fa0406736eb (diff)
MetaContacts:
plusified git-svn-id: http://svn.miranda-ng.org/main/trunk@558 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MetaContacts/meta_utils.cpp')
-rw-r--r--plugins/MetaContacts/meta_utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MetaContacts/meta_utils.cpp b/plugins/MetaContacts/meta_utils.cpp
index de30a369a3..e319bdac46 100644
--- a/plugins/MetaContacts/meta_utils.cpp
+++ b/plugins/MetaContacts/meta_utils.cpp
@@ -1537,7 +1537,7 @@ void copyHistory(HANDLE hContactFrom,HANDLE hContactTo)
if ((dbei.cbBlob = CallService(MS_DB_EVENT_GETBLOBSIZE, (WPARAM)hDbEvent, 0)) == -1)
break;
- buffer = mir_realloc(buffer, dbei.cbBlob);// + id_length);
+ buffer = (BYTE *)mir_realloc(buffer, dbei.cbBlob);// + id_length);
dbei.pBlob = buffer;
if (CallService(MS_DB_EVENT_GET,(WPARAM)hDbEvent,(LPARAM)&dbei))