From d85e9fe405233449ad56b0c5814c806c301431a3 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Fri, 15 Dec 2006 15:21:13 +0000 Subject: [PATCH] (svn r7500) -Fix (r7460): GetEnvironmentVariable and strncat take the number of characters and not the number of bytes as an argument. Thanks Tron. --- win32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win32.c b/win32.c index b65fbc7432..9aa99dab90 100644 --- a/win32.c +++ b/win32.c @@ -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;