diff options
Diffstat (limited to 'protocols/Steam/src/steam_messages.cpp')
-rw-r--r-- | protocols/Steam/src/steam_messages.cpp | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/protocols/Steam/src/steam_messages.cpp b/protocols/Steam/src/steam_messages.cpp index 20496bc039..144d3d28a2 100644 --- a/protocols/Steam/src/steam_messages.cpp +++ b/protocols/Steam/src/steam_messages.cpp @@ -17,20 +17,7 @@ void CSteamProto::SendMessageThread(void *arg) sendResult.IsSuccess() ? ACKRESULT_SUCCESS : ACKRESULT_FAILED,
param->hMessage, 0);
- if (sendResult.IsSuccess())
- {
- DBEVENTINFO dbei = { sizeof(dbei) };
- dbei.szModule = this->m_szModuleName;
- dbei.timestamp = sendResult.GetTimestamp();
- dbei.eventType = EVENTTYPE_MESSAGE;
- dbei.cbBlob = strlen(param->text);
- dbei.pBlob = (BYTE*)param->text;
- dbei.flags = DBEF_UTF | DBEF_SENT;
-
- db_event_add(param->hContact, &dbei);
- }
-
- //mir_free((void*)param->text);
+ mir_free((void*)param->text);
mir_free(param);
}
|