Applied patch to "correct" hashmap's freeing

of memory.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30831 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2004-12-01 18:33:33 +00:00
parent 0b18767089
commit 86baa52d22

View File

@@ -101,6 +101,10 @@ protected:
{ {
return (void **)calloc(sz, sizeof(void*)); return (void **)calloc(sz, sizeof(void*));
} }
static void FreeTable(void *table)
{
free(table);
}
}; };
#define _WX_DECLARE_HASHTABLE( VALUE_T, KEY_T, HASH_T, KEY_EX_T, KEY_EQ_T, CLASSNAME, CLASSEXP, SHOULD_GROW, SHOULD_SHRINK ) \ #define _WX_DECLARE_HASHTABLE( VALUE_T, KEY_T, HASH_T, KEY_EX_T, KEY_EQ_T, CLASSNAME, CLASSEXP, SHOULD_GROW, SHOULD_SHRINK ) \
@@ -248,7 +252,7 @@ public: \
{ \ { \
clear(); \ clear(); \
\ \
free(m_table); \ FreeTable(m_table); \
} \ } \
\ \
hasher hash_funct() { return m_hasher; } \ hasher hash_funct() { return m_hasher; } \
@@ -379,7 +383,7 @@ protected: \
this, (_wxHashTable_NodeBase**)m_table, \ this, (_wxHashTable_NodeBase**)m_table, \
(BucketFromNode)GetBucketForNode,\ (BucketFromNode)GetBucketForNode,\
(ProcessNode)&DummyProcessNode ); \ (ProcessNode)&DummyProcessNode ); \
free(srcTable); \ FreeTable(srcTable); \
} \ } \
\ \
/* this must be called _after_ m_table has been cleaned */ \ /* this must be called _after_ m_table has been cleaned */ \