HADOOP-10356. Corrections in winutils/chmod.c (Contributed by René Nyffenegger)

This commit is contained in:
Arpit Agarwal 2015-05-08 11:42:50 -07:00
parent 26f61d41df
commit a0fae8dcae
2 changed files with 6 additions and 3 deletions

View File

@ -632,6 +632,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-11877. SnappyDecompressor's Logger class name is wrong HADOOP-11877. SnappyDecompressor's Logger class name is wrong
(surendra singh lilhore via vinayakumarb) (surendra singh lilhore via vinayakumarb)
HADOOP-10356. Corrections in winutils/chmod.c. (Rene Nyffenegger via
Arpit Agarwal)
Release 2.7.1 - UNRELEASED Release 2.7.1 - UNRELEASED
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES

View File

@ -105,7 +105,7 @@ static BOOL ChangeFileModeRecursively(__in LPCWSTR path, __in_opt INT mode,
// //
int Chmod(__in int argc, __in_ecount(argc) wchar_t *argv[]) int Chmod(__in int argc, __in_ecount(argc) wchar_t *argv[])
{ {
LPWSTR pathName = NULL; LPCWSTR pathName = NULL;
LPWSTR longPathName = NULL; LPWSTR longPathName = NULL;
BOOL recursive = FALSE; BOOL recursive = FALSE;
@ -128,7 +128,7 @@ int Chmod(__in int argc, __in_ecount(argc) wchar_t *argv[])
return EXIT_FAILURE; return EXIT_FAILURE;
} }
// Convert the path the the long path // Convert the path to the long path
// //
dwRtnCode = ConvertToLongPath(pathName, &longPathName); dwRtnCode = ConvertToLongPath(pathName, &longPathName);
if (dwRtnCode != ERROR_SUCCESS) if (dwRtnCode != ERROR_SUCCESS)
@ -763,7 +763,7 @@ static BOOL ParseMode(LPCWSTR modeString, PMODE_CHANGE_ACTION *pActions)
{ {
switch (c) switch (c)
{ {
case NULL: case L'\0':
__fallthrough; __fallthrough;
case L',': case L',':
i++; i++;