HADOOP-11193. Fix uninitialized variables in NativeIO.c. Contributed by Xiaoyu Yao.
This commit is contained in:
parent
fff6a1f77e
commit
16710758f1
|
@ -483,6 +483,9 @@ Release 2.6.0 - UNRELEASED
|
|||
HADOOP-11133. Should trim the content of keystore password file for JavaKeyStoreProvider
|
||||
(Yi Liu via umamahesh)
|
||||
|
||||
HADOOP-11193. Fix uninitialized variables in NativeIO.c
|
||||
(Xiaoyu Yao via wheat9)
|
||||
|
||||
BREAKDOWN OF HDFS-6134 AND HADOOP-10150 SUBTASKS AND RELATED JIRAS
|
||||
|
||||
HADOOP-10734. Implement high-performance secure random number sources.
|
||||
|
|
|
@ -275,7 +275,7 @@ cleanup:
|
|||
#ifdef WINDOWS
|
||||
LPWSTR owner = NULL;
|
||||
LPWSTR group = NULL;
|
||||
int mode;
|
||||
int mode = 0;
|
||||
jstring jstr_owner = NULL;
|
||||
jstring jstr_group = NULL;
|
||||
int rc;
|
||||
|
|
|
@ -807,8 +807,8 @@ DWORD FindFileOwnerAndPermission(
|
|||
DWORD cbSid = SECURITY_MAX_SID_SIZE;
|
||||
PACL pDacl = NULL;
|
||||
|
||||
BOOL isSymlink;
|
||||
BY_HANDLE_FILE_INFORMATION fileInformation;
|
||||
BOOL isSymlink = FALSE;
|
||||
BY_HANDLE_FILE_INFORMATION fileInformation = {0};
|
||||
|
||||
ACCESS_MASK ownerAccessRights = 0;
|
||||
ACCESS_MASK groupAccessRights = 0;
|
||||
|
|
Loading…
Reference in New Issue