diff options
Diffstat (limited to 'plugins/WinterSpeak/src/EventInformation.cpp')
-rw-r--r-- | plugins/WinterSpeak/src/EventInformation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/WinterSpeak/src/EventInformation.cpp b/plugins/WinterSpeak/src/EventInformation.cpp index 8d8a8ea739..21c90a7b85 100644 --- a/plugins/WinterSpeak/src/EventInformation.cpp +++ b/plugins/WinterSpeak/src/EventInformation.cpp @@ -14,7 +14,7 @@ EventInformation::EventInformation() : m_event_strings(), m_event_info() m_event_strings[EVENTTYPE_AUTHREQUEST] = TranslateW(L"%u requests your authorization");
m_event_strings[EVENTTYPE_FILE] = TranslateW(L"there is an incoming file from %u");
- ZeroMemory(&m_event_info, sizeof(m_event_info));
+ memset(&m_event_info, 0, sizeof(m_event_info));
}
//------------------------------------------------------------------------------
@@ -30,7 +30,7 @@ bool EventInformation::isValidEvent(HANDLE event) {
delete m_event_info.pBlob;
}
- ZeroMemory(&m_event_info, sizeof(m_event_info));
+ memset(&m_event_info, 0, sizeof(m_event_info));
// find out and assign the space we need for the new event
m_event_info.cbSize = sizeof(m_event_info);
|