]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't call wxSocketBase::IsInitialized() from worker threads.
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 21 Sep 2009 14:45:45 +0000 (14:45 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 21 Sep 2009 14:45:45 +0000 (14:45 +0000)
This function should be used in the main thread only and calling it from
wxSockAddress unconditionally resulted in asserts in the unit test.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61997 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/sckaddr.cpp

index 9e21624fed06df1fd95b737a4949e0c62e286c9c..5f2797cf5cdf966900d74502c70edd6bf959db34 100644 (file)
@@ -31,6 +31,7 @@
     #include "wx/object.h"
     #include "wx/log.h"
     #include "wx/intl.h"
+    #include "wx/thread.h"
 
     #include <stdio.h>
     #include <stdlib.h>
@@ -734,7 +735,7 @@ int wxSockAddress::GetAddressDataLen() const
 
 void wxSockAddress::Init()
 {
-    if ( !wxSocketBase::IsInitialized() )
+    if ( wxIsMainThread() && !wxSocketBase::IsInitialized() )
     {
         // we must do it before using any socket functions
         (void)wxSocketBase::Initialize();