diff options
author | George Hazan <george.hazan@gmail.com> | 2013-05-10 18:37:42 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-05-10 18:37:42 +0000 |
commit | 97fe0e28cae9ab3d9131dc13103027cb41aa21c8 (patch) | |
tree | 1a17e0b89d70c5adc446b946a6a562aa28b7d978 /plugins/Scriver | |
parent | c16bfe00dc27525c03e36cca6930abe5a9fd43a7 (diff) |
fix against mir_realloc in Skype
git-svn-id: http://svn.miranda-ng.org/main/trunk@4625 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver')
-rw-r--r-- | plugins/Scriver/src/globals.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/Scriver/src/globals.cpp b/plugins/Scriver/src/globals.cpp index dd739d10f1..cb9feb1564 100644 --- a/plugins/Scriver/src/globals.cpp +++ b/plugins/Scriver/src/globals.cpp @@ -456,6 +456,7 @@ static int ackevent(WPARAM wParam, LPARAM lParam) MessageWindowEvent evt = { sizeof(evt), (int)item->hSendId, item->hContact, &dbei };
NotifyEventHooks(hHookWinWrite, 0, (LPARAM)&evt);
+ item->sendBuffer = (char*)dbei.pBlob;
db_event_add(item->hContact, &dbei);
if (item->hwndErrorDlg != NULL)
|