summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-08-31 10:15:31 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-08-31 10:15:31 +0000
commita5ba2f33673df7b236f8b05d2721c6742d48faf4 (patch)
treeb2b440ded6b0b58c17c7cfd82e669aeee89697c9
parent7bcaf2c6f27ae6e8e019a20f7aa0c700f23a30f2 (diff)
downloadATCD-a5ba2f33673df7b236f8b05d2721c6742d48faf4.tar.gz
ChangeLogTag:Tue Aug 31 00:16:34 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
-rw-r--r--THANKS1
-rw-r--r--apps/JAWS/ChangeLog8
-rw-r--r--apps/JAWS/server/HTTP_Handler.cpp2
3 files changed, 10 insertions, 1 deletions
diff --git a/THANKS b/THANKS
index d737ca3d485..3e5d3945487 100644
--- a/THANKS
+++ b/THANKS
@@ -737,6 +737,7 @@ Narendra Ravi <naren@cs.ualberta.ca>
Krishnakumar B. <kitty@neo.shinko.co.jp>
David Sunwall <das@planet8.tds-eagan.lmco.com>
Brian Wright <bwright@paladyne.com>
+Yosi Sarusi <yosi@appstream.com>
I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson. Paul devised the recursive Makefile scheme that
diff --git a/apps/JAWS/ChangeLog b/apps/JAWS/ChangeLog
index 7c21c2821bc..7c3013b5bc3 100644
--- a/apps/JAWS/ChangeLog
+++ b/apps/JAWS/ChangeLog
@@ -1,3 +1,11 @@
+Tue Aug 31 05:10:32 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * server/HTTP_Handler.cpp (destroy_http_handler): Switched
+ the order in which handler and io were deleted since the current
+ order seems to destroy handler first, which is problematic since
+ io is contained within handler! Thanks to Yosi Sarusi
+ <yosi@appstream.com> for reporting this.
+
Wed Aug 18 16:00:46 1999 David L. Levine <levine@cs.wustl.edu>
* server/Makefile,client/Caching/Makefile: don't build if
diff --git a/apps/JAWS/server/HTTP_Handler.cpp b/apps/JAWS/server/HTTP_Handler.cpp
index 9148e4aa5c1..30ddff2de1c 100644
--- a/apps/JAWS/server/HTTP_Handler.cpp
+++ b/apps/JAWS/server/HTTP_Handler.cpp
@@ -255,8 +255,8 @@ void
Synch_HTTP_Handler_Factory::destroy_http_handler (HTTP_Handler &handler,
JAWS_IO &io)
{
- delete &handler;
delete &io;
+ delete &handler;
}
// This only works on Win32