From 5a19f89d6c8eb148e6bb7b450f702b666f685ed1 Mon Sep 17 00:00:00 2001 From: Rozhuk Ivan Date: Sat, 13 Dec 2014 10:52:12 +0000 Subject: MoveMemory -> memmove git-svn-id: http://svn.miranda-ng.org/main/trunk@11365 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/AutoShutdown/src/utils.cpp | 2 +- plugins/AutoShutdown/src/watcher.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/AutoShutdown/src') diff --git a/plugins/AutoShutdown/src/utils.cpp b/plugins/AutoShutdown/src/utils.cpp index 4335dd7566..6a4a2cdb9b 100644 --- a/plugins/AutoShutdown/src/utils.cpp +++ b/plugins/AutoShutdown/src/utils.cpp @@ -58,7 +58,7 @@ void TrimString(TCHAR *pszStr) } /* trim beginning */ for(psz=pszStr;(*psz && *psz==szChars[i]);psz=CharNext(psz)); - MoveMemory(pszStr,psz,(mir_tstrlen(psz)+1)*sizeof(TCHAR)); + memmove(pszStr,psz,(mir_tstrlen(psz)+1)*sizeof(TCHAR)); } } diff --git a/plugins/AutoShutdown/src/watcher.cpp b/plugins/AutoShutdown/src/watcher.cpp index 41f52be000..0c8a22397e 100644 --- a/plugins/AutoShutdown/src/watcher.cpp +++ b/plugins/AutoShutdown/src/watcher.cpp @@ -148,7 +148,7 @@ static int ProtoAck(WPARAM wParam,LPARAM lParam) if (transfers[i]==ack->hProcess) { /* remove from list */ if (i<(nTransfersCount-1)) - MoveMemory(&transfers[i],&transfers[i+1],(nTransfersCount-i-1)*sizeof(HANDLE)); + memmove(&transfers[i],&transfers[i+1],(nTransfersCount-i-1)*sizeof(HANDLE)); --nTransfersCount; HANDLE *buf = (HANDLE*)mir_realloc(transfers,nTransfersCount*sizeof(HANDLE)); if (buf != NULL) transfers=buf; -- cgit v1.2.3