You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "Brahma Reddy Battula (JIRA)" <ji...@apache.org> on 2015/04/20 10:02:58 UTC

[jira] [Updated] (HADOOP-11848) Incorrect arguments to sizeof in DomainSocket.c

     [ https://issues.apache.org/jira/browse/HADOOP-11848?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brahma Reddy Battula updated HADOOP-11848:
------------------------------------------
    Fix Version/s:     (was: 2.6.0)

> 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
>    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)