diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2000-10-26 17:22:02 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2000-10-26 17:22:02 +0000 |
commit | cbbf8da990706825b878bbfa0de68e0e0f5e288c (patch) | |
tree | fe21c903e291ae2ff721bf784b0e73640d26c7c8 | |
parent | 5010dbda3bfc3824ec5ecb1fdc6faca8705810d5 (diff) | |
download | ATCD-cbbf8da990706825b878bbfa0de68e0e0f5e288c.tar.gz |
ChangeLogTag:Thu Oct 26 12:19:45 2000 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 6 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 6 | ||||
-rw-r--r-- | ace/Memory_Pool.cpp | 2 |
4 files changed, 19 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 0cbf839b94c..de45058c386 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Oct 26 12:19:45 2000 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu> + + * ace/Memory_Pool.cpp (unmap): Fixed a bug that was preventing + the handle from being closed. Thanks to Ivan Murphy and Dieter + Quehl for reporting this. + Thu Oct 26 10:56:36 2000 Steve Huston <shuston@riverace.com> * ace/OS.i (ACE_OS::rename): Added && (ACE_HAS_WINNT4 == 1) to the diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index 0cbf839b94c..de45058c386 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,3 +1,9 @@ +Thu Oct 26 12:19:45 2000 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu> + + * ace/Memory_Pool.cpp (unmap): Fixed a bug that was preventing + the handle from being closed. Thanks to Ivan Murphy and Dieter + Quehl for reporting this. + Thu Oct 26 10:56:36 2000 Steve Huston <shuston@riverace.com> * ace/OS.i (ACE_OS::rename): Added && (ACE_HAS_WINNT4 == 1) to the diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index 0cbf839b94c..de45058c386 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,9 @@ +Thu Oct 26 12:19:45 2000 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu> + + * ace/Memory_Pool.cpp (unmap): Fixed a bug that was preventing + the handle from being closed. Thanks to Ivan Murphy and Dieter + Quehl for reporting this. + Thu Oct 26 10:56:36 2000 Steve Huston <shuston@riverace.com> * ace/OS.i (ACE_OS::rename): Added && (ACE_HAS_WINNT4 == 1) to the diff --git a/ace/Memory_Pool.cpp b/ace/Memory_Pool.cpp index 2fe32482e8c..bf7d22d0b01 100644 --- a/ace/Memory_Pool.cpp +++ b/ace/Memory_Pool.cpp @@ -1153,7 +1153,7 @@ ACE_Pagefile_Memory_Pool::unmap (void) this->local_cb_.sh_.free_size_ = 0; // Release the pool - if (this->object_handle_ == 0) + if (this->object_handle_ != 0) { ::CloseHandle (this->object_handle_); this->object_handle_ = 0; |