[ 
https://issues.apache.org/jira/browse/HADOOP-11848?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14506480#comment-14506480
 ] 

Chris Nauroth commented on HADOOP-11848:
----------------------------------------

Hi [~malcolm kavalsky].  Is your remote git://git.apache.org/hadoop-common.git? 
 If so, then I noticed the same thing earlier today.  We probably need to 
follow up on that with Apache Infrastructure.

Meanwhile though, I think you can make progress by using a different remote: 
https://git-wip-us.apache.org/repos/asf/hadoop.git.  This is the remote where 
we actually push committed patches.  git.apache.org is a mirror of that, and 
then the github copy is a mirror of git.apache.org.

> Incorrect arguments to sizeof in DomainSocket.c
> -----------------------------------------------
>
>                 Key: HADOOP-11848
>                 URL: https://issues.apache.org/jira/browse/HADOOP-11848
>             Project: Hadoop Common
>          Issue Type: Bug
>          Components: native
>    Affects Versions: 2.6.0
>            Reporter: Malcolm Kavalsky
>            Assignee: Malcolm Kavalsky
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> Length of buffer to be zeroed using sizeof , should not use the address of 
> the structure rather the structure itself.
> DomainSocket.c line 156
> Replace current:
> memset(&addr,0,sizeof,(&addr));
> With:
> memset(&addr, 0, sizeof(addr));



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to