git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40108
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
+// This function wasn't written to be reentrant but there is a possiblity of
+// reentrance if something it does causes a shared lib to load and register
+// classes. On Solaris this happens when the wxHashTable is newed, so the first
+// part of the function has been modified to handle it, and a wxASSERT checks
+// against reentrance in the remainder of the function.
+
void wxClassInfo::Register()
{
if ( !sm_classTable )
{
void wxClassInfo::Register()
{
if ( !sm_classTable )
{
- sm_classTable = new wxHashTable(wxKEY_STRING);
+ wxHashTable *classTable = new wxHashTable(wxKEY_STRING);
+
+ // check for reentrance
+ if ( sm_classTable )
+ delete classTable;
+ else
+ sm_classTable = classTable;
+ // reentrance guard - see note above
+ static int entry = 0;
+ wxASSERT_MSG(++entry == 1, _T("wxClassInfo::Register() reentrance"));
+
// Using IMPLEMENT_DYNAMIC_CLASS() macro twice (which may happen if you
// link any object module twice mistakenly, or link twice against wx shared
// library) will break this function because it will enter an infinite loop
// Using IMPLEMENT_DYNAMIC_CLASS() macro twice (which may happen if you
// link any object module twice mistakenly, or link twice against wx shared
// library) will break this function because it will enter an infinite loop
);
sm_classTable->Put(m_className, (wxObject *)this);
);
sm_classTable->Put(m_className, (wxObject *)this);
}
void wxClassInfo::Unregister()
}
void wxClassInfo::Unregister()