diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-12-16 13:11:12 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-12-16 13:11:12 +0000 |
commit | ea3ab8f3a8ed69436d3350ac15593394fc7e0e56 (patch) | |
tree | 57b3c8a186ddea51ad45fb3976a59e0abe90099b /src/mir_core | |
parent | 55b2e3d64ab23960caa25fb2a296d44caf39057e (diff) |
Fixed minor leaks
git-svn-id: http://svn.miranda-ng.org/main/trunk@11457 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/mir_core')
-rw-r--r-- | src/mir_core/protos.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mir_core/protos.cpp b/src/mir_core/protos.cpp index b8cacdd8fb..0c2e6c8e5a 100644 --- a/src/mir_core/protos.cpp +++ b/src/mir_core/protos.cpp @@ -70,6 +70,8 @@ MIR_CORE_DLL(INT_PTR) ProtoBroadcastAck(const char *szModule, MCONTACT hContact, MultiByteToWideChar(CP_ACP, 0, ai->filename, -1, aiw.filename, SIZEOF(aiw.filename));
hProcess = &aiw;
+ ACKDATA ack = { sizeof(ACKDATA), szModule, hContact, type, result, hProcess, lParam };
+ return NotifyEventHooks(hAckEvent, 0, (LPARAM)&ack);
}
}
|