diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-05-01 17:51:59 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-05-01 17:51:59 +0000 |
commit | ee048f0afbd0f343ba944b42939a88fe8c13a088 (patch) | |
tree | 9243318aa970d08a03e6778f4d44c1b814b5cbaf | |
parent | a7ce75ebc63c8e0783e722d1d19ecc79471bb409 (diff) | |
download | ATCD-ee048f0afbd0f343ba944b42939a88fe8c13a088.tar.gz |
ChangeLogTag: Mon May 01 12:41:39 2000 Irfan Pyarali <irfan@cs.wustl.edu>
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 8 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 8 | ||||
-rw-r--r-- | ace/Hash_Map_Manager_T.cpp | 3 |
4 files changed, 24 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index e2bdc93c851..39d72022053 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,13 @@ +Mon May 01 12:41:39 2000 Irfan Pyarali <irfan@cs.wustl.edu> + + * ace/Hash_Map_Manager_T.cpp (close_i): Restored freeing of the + table memory which had been mistakenly removed. Thanks to David + for pointing this out. + Mon May 1 10:27:48 2000 Darrell Brunsch <brunsch@uci.edu> * bin/auto_compile_win32.pl: - + Some minor changes that should make the Win32 builds clean ( which I want to see once before bugging Nanbor to switch to my script :-) ) diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index e2bdc93c851..39d72022053 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,7 +1,13 @@ +Mon May 01 12:41:39 2000 Irfan Pyarali <irfan@cs.wustl.edu> + + * ace/Hash_Map_Manager_T.cpp (close_i): Restored freeing of the + table memory which had been mistakenly removed. Thanks to David + for pointing this out. + Mon May 1 10:27:48 2000 Darrell Brunsch <brunsch@uci.edu> * bin/auto_compile_win32.pl: - + Some minor changes that should make the Win32 builds clean ( which I want to see once before bugging Nanbor to switch to my script :-) ) diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index e2bdc93c851..39d72022053 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,7 +1,13 @@ +Mon May 01 12:41:39 2000 Irfan Pyarali <irfan@cs.wustl.edu> + + * ace/Hash_Map_Manager_T.cpp (close_i): Restored freeing of the + table memory which had been mistakenly removed. Thanks to David + for pointing this out. + Mon May 1 10:27:48 2000 Darrell Brunsch <brunsch@uci.edu> * bin/auto_compile_win32.pl: - + Some minor changes that should make the Win32 builds clean ( which I want to see once before bugging Nanbor to switch to my script :-) ) diff --git a/ace/Hash_Map_Manager_T.cpp b/ace/Hash_Map_Manager_T.cpp index 870a3c92488..ec88ca9c3d3 100644 --- a/ace/Hash_Map_Manager_T.cpp +++ b/ace/Hash_Map_Manager_T.cpp @@ -160,6 +160,9 @@ ACE_Hash_Map_Manager_Ex<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK>::close // Reset size. this->total_size_ = 0; + // Free table memory. + this->allocator_->free (this->table_); + // Should be done last... this->table_ = 0; } |