diff options
Diffstat (limited to 'plugins/Exchange')
-rw-r--r-- | plugins/Exchange/src/MirandaExchange.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Exchange/src/MirandaExchange.cpp b/plugins/Exchange/src/MirandaExchange.cpp index fd9e7ed387..58c54d0d4c 100644 --- a/plugins/Exchange/src/MirandaExchange.cpp +++ b/plugins/Exchange/src/MirandaExchange.cpp @@ -91,7 +91,7 @@ HRESULT HrMAPIFindDefaultMsgStore( // RETURNS: return code lpeid = NULL; } else { // Copy entry ID of message store - CopyMemory(lpeid, lpRows->aRow[i].lpProps[1].Value.bin.lpb, cbeid); + memcpy(lpeid, lpRows->aRow[i].lpProps[1].Value.bin.lpb, cbeid); } break; } |