Commit 3f4c7b3d authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander Trofimov

CopyMemory->memcpy

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@58502 954022d7-b5bf-4e40-9824-e11837661b57
parent 19c95259
...@@ -42,7 +42,7 @@ namespace CSVWriter ...@@ -42,7 +42,7 @@ namespace CSVWriter
if (!bIsEnd) if (!bIsEnd)
{ {
::CopyMemory(*pWriteBuffer + nCurrentIndex, sWriteString.GetBuffer(), nCountChars * nSizeWchar); memcpy(*pWriteBuffer + nCurrentIndex, sWriteString.GetBuffer(), nCountChars * nSizeWchar);
nCurrentIndex += nCountChars; nCurrentIndex += nCountChars;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment