Kaydet (Commit) 0a28778e authored tarafından Luboš Luňák's avatar Luboš Luňák

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.
üst c57906c8
......@@ -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() );
}
}
......
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