Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
2.6.0
-
Reviewed
Description
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));