]> git.llucax.com Git - software/posixx.git/commitdiff
Clean the tipc::sockaddr in the default constructor
authorLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 27 Feb 2009 18:27:30 +0000 (16:27 -0200)
committerLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 27 Feb 2009 18:46:16 +0000 (16:46 -0200)
The TIPC's sockaddr default constructor now sets the family to AF_TIPC and
set all the other values to 0.

src/linux/tipc.hpp

index b16bc5168d3f8b4208185614e7239c091fba5453..cb33335ccc8cb200afa52fb135b67a289511a306 100644 (file)
@@ -641,6 +641,8 @@ posixx::linux::tipc::subscr_event::subscription() const throw ()
 inline
 posixx::linux::tipc::sockaddr::sockaddr() throw ()
 {
+       memset(this, 0, sizeof(*this));
+       family = AF_TIPC;
 }
 
 inline