X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7172db18572590af6b79492bcabe284de33bd090..ca77701441e39245dcbfce903049e76f166979e5:/include/wx/private/sckaddr.h?ds=sidebyside diff --git a/include/wx/private/sckaddr.h b/include/wx/private/sckaddr.h index a4971fd4aa..bb6b30c679 100644 --- a/include/wx/private/sckaddr.h +++ b/include/wx/private/sckaddr.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Name: wx/private/sockaddr.h +// Name: wx/private/sckaddr.h // Purpose: wxSockAddressImpl // Author: Vadim Zeitlin // Created: 2008-12-28 @@ -11,7 +11,7 @@ #ifndef _WX_PRIVATE_SOCKADDR_H_ #define _WX_PRIVATE_SOCKADDR_H_ -#ifdef __WXMSW__ +#ifdef __WINDOWS__ #include "wx/msw/wrapwin.h" #if wxUSE_IPV6 @@ -137,10 +137,11 @@ public: wxSockAddressImpl& operator=(const wxSockAddressImpl& other) { - free(m_addr); - - InitFromOther(other); - + if (this != &other) + { + free(m_addr); + InitFromOther(other); + } return *this; } @@ -178,13 +179,13 @@ public: case FAMILY_INET6: CreateINET6(); break; -#endif +#endif // wxUSE_IPV6 #ifdef wxHAS_UNIX_DOMAIN_SOCKETS case FAMILY_UNIX: -#endif CreateUnix(); break; +#endif // wxHAS_UNIX_DOMAIN_SOCKETS default: wxFAIL_MSG( "unsupported socket address family" );