1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-06 07:44:57 +03:00

v4.06-9433-beta

This commit is contained in:
dnobori
2014-03-21 14:07:45 +09:00
parent dc5d3ee2ae
commit e61fca4d9d
279 changed files with 272 additions and 272 deletions

View File

@ -3412,7 +3412,7 @@ UINT UniStrCpy(wchar_t *dst, UINT size, wchar_t *src)
}
else
{
len = size / 2 - 1;
len = size / sizeof(wchar_t) - 1;
Copy(dst, src, len * sizeof(wchar_t));
dst[len] = 0;
}