mingw tinderbox doesn't know wcscpy_r()
Moreover, according to MSDN, wcscpy() in C++ is a template that doesn't need the length passed, so this shouldn't make actually anything worse.
This commit is contained in:
parent
c57906c8f6
commit
0a28778e9a
1 changed files with 1 additions and 1 deletions
|
@ -2414,7 +2414,7 @@ static void ImplGetKeyNameText( LONG lParam, sal_Unicode* pBuf,
|
|||
else
|
||||
{
|
||||
nKeyLen = aRet.getLength();
|
||||
wcscpy_s( aKeyBuf, nMaxKeyLen, aRet.getStr() );
|
||||
wcscpy( aKeyBuf, aRet.getStr() );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue