(svn r7500) -Fix (r7460): GetEnvironmentVariable and strncat take the number of characters and

not the number of bytes as an argument. Thanks Tron.
This commit is contained in:
Darkvater 2006-12-15 15:21:13 +00:00
parent 631becf31d
commit d85e9fe405
1 changed files with 2 additions and 2 deletions

View File

@ -1126,9 +1126,9 @@ HRESULT OTTDSHGetFolderPath(HWND hwnd, int csidl, HANDLE hToken, DWORD dwFlags,
DWORD ret;
switch (csidl) {
case CSIDL_FONTS: /* Get the system font path, eg %WINDIR%\Fonts */
ret = GetEnvironmentVariable(_T("WINDIR"), pszPath, MAX_PATH * sizeof(TCHAR));
ret = GetEnvironmentVariable(_T("WINDIR"), pszPath, MAX_PATH);
if (ret == 0) break;
_tcsncat(pszPath, _T("\\Fonts"), MAX_PATH * sizeof(TCHAR));
_tcsncat(pszPath, _T("\\Fonts"), MAX_PATH);
return (HRESULT)0;
break;