From 4903dda319f092af37f5b0e58716e3a0cb7aa025 Mon Sep 17 00:00:00 2001 From: Austin English Date: Sun, 23 Mar 2014 17:09:36 -0700 Subject: [PATCH] shell32: Fix a typo. --- dlls/shell32/shellpath.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c index afa2543189e..2dfed750402 100644 --- a/dlls/shell32/shellpath.c +++ b/dlls/shell32/shellpath.c @@ -2265,8 +2265,8 @@ HRESULT WINAPI SHGetFolderPathAndSubDirW( if (FAILED(hr)) goto end; if(pszSubPath) { - /* make sure the new path does not exceed th bufferlength - * rememebr to backslash and the termination */ + /* make sure the new path does not exceed the buffer length + * and remember to backslash and terminate it */ if(MAX_PATH < (lstrlenW(szBuildPath) + lstrlenW(pszSubPath) + 2)) { hr = HRESULT_FROM_WIN32(ERROR_FILENAME_EXCED_RANGE); goto end;