summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormk1 <mk1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-24 15:27:45 +0000
committermk1 <mk1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-24 15:27:45 +0000
commitbb1b1b6f1763abaa5ea2441e97e7949142b4edf2 (patch)
tree157a43eaa202793af2cf1aac76a78e9deb3cfa9e
parent05b13531ba3a1296ff951a8c595efa259e890de9 (diff)
downloadATCD-bb1b1b6f1763abaa5ea2441e97e7949142b4edf2.tar.gz
ChangeLogTag: Mon Jul 24 10:30:35 2000 Michael Kircher <Michael.Kircher@mchp.siemens.de>
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLogs/ChangeLog-02a5
-rw-r--r--ChangeLogs/ChangeLog-03a5
-rw-r--r--ace/OS_Dirent.inl2
4 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 784003c703c..cb5096355ba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Jul 24 10:30:35 2000 Michael Kircher <Michael.Kircher@mchp.siemens.de>
+
+ * OS_Dirent.inl: Added the deletion of the DIR.directory_name_
+ and the DIR struct itself for the Win32 emulation.
+
Sat Jul 22 22:10:35 2000 Marina Spivak <marina@cs.wustl.edu>
* config-win32-common.h
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 784003c703c..cb5096355ba 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,8 @@
+Mon Jul 24 10:30:35 2000 Michael Kircher <Michael.Kircher@mchp.siemens.de>
+
+ * OS_Dirent.inl: Added the deletion of the DIR.directory_name_
+ and the DIR struct itself for the Win32 emulation.
+
Sat Jul 22 22:10:35 2000 Marina Spivak <marina@cs.wustl.edu>
* config-win32-common.h
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 784003c703c..cb5096355ba 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,8 @@
+Mon Jul 24 10:30:35 2000 Michael Kircher <Michael.Kircher@mchp.siemens.de>
+
+ * OS_Dirent.inl: Added the deletion of the DIR.directory_name_
+ and the DIR struct itself for the Win32 emulation.
+
Sat Jul 22 22:10:35 2000 Marina Spivak <marina@cs.wustl.edu>
* config-win32-common.h
diff --git a/ace/OS_Dirent.inl b/ace/OS_Dirent.inl
index 4caba85498c..e81a952a951 100644
--- a/ace/OS_Dirent.inl
+++ b/ace/OS_Dirent.inl
@@ -67,6 +67,8 @@ ACE_OS_Dirent::closedir (DIR *d)
# if defined (ACE_WIN32)
ACE_OS_Dirent::closedir_emulation (d);
+ delete d->directory_name_;
+ delete d;
# else /* ACE_WIN32 */
::closedir (d);
# endif /* ACE_WIN32 */