HADOOP-11848. Incorrect arguments to sizeof in DomainSocket.c (Malcolm Kavalsky via Colin P. McCabe)
This commit is contained in:
parent
12f4df043f
commit
a3b1d8c902
@ -536,6 +536,9 @@ Release 2.8.0 - UNRELEASED
|
|||||||
HADOOP-11859. PseudoAuthenticationHandler fails with httpcomponents v4.4.
|
HADOOP-11859. PseudoAuthenticationHandler fails with httpcomponents v4.4.
|
||||||
(Eugene Koifman via jitendra)
|
(Eugene Koifman via jitendra)
|
||||||
|
|
||||||
|
HADOOP-11848. Incorrect arguments to sizeof in DomainSocket.c (Malcolm
|
||||||
|
Kavalsky via Colin P. McCabe)
|
||||||
|
|
||||||
Release 2.7.1 - UNRELEASED
|
Release 2.7.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -153,7 +153,7 @@ static jthrowable setup(JNIEnv *env, int *ofd, jobject jpath, int doConnect)
|
|||||||
terror(ret));
|
terror(ret));
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
memset(&addr, 0, sizeof(&addr));
|
memset(&addr, 0, sizeof(addr));
|
||||||
addr.sun_family = AF_UNIX;
|
addr.sun_family = AF_UNIX;
|
||||||
cpath = (*env)->GetStringUTFChars(env, jpath, NULL);
|
cpath = (*env)->GetStringUTFChars(env, jpath, NULL);
|
||||||
if (!cpath) {
|
if (!cpath) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user