summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-08-15 09:14:22 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-08-15 09:14:22 +0000
commit4c126243702f29c018341a9d20c898dd35e4228a (patch)
treee338b0d6c3c88601092e76cee57ece700b46327d /ChangeLog
parentf771e283f332b4725fd7b0a1428e80020cad18fb (diff)
downloadATCD-4c126243702f29c018341a9d20c898dd35e4228a.tar.gz
ChangeLogTag: Mon Aug 15 09:12:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog27
1 files changed, 21 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index c49c4797fea..c91847107df 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,14 +1,29 @@
+Mon Aug 15 09:12:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/DLL_Manager.cpp:
+ We first try to find the file using the decorator so that when a
+ filename with and without decorator is used, we get the file with
+ the same decorator as the ACE dll has and then as last resort
+ the one without. For example with msvc, the debug build has a "d"
+ decorator, but the release build has none and we really want to get
+ the debug version of the library in a debug application instead
+ of the release one.
+
+ Thanks to Vitaly Belekhov <vitaly at megasignal dot com> for
+ reporting this and supply the patches. This fixed bugzilla
+ 2210
+
Sun Aug 14 11:27:54 2005 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* apps/JAWS2/JAWS/IO_Handler.cpp (handle_transmit_file): Fixed
- a bug where
-
- delete (ACE_Filecache_Handle *) result.act ();
-
+ a bug where
+
+ delete (ACE_Filecache_Handle *) result.act ();
+
should have been
-
+
delete (JAWS_Cached_FILE *) result.act ();
-
+
Thanks to Anand Rathi <anandprathi@yahoo.co.in> for reporting
this.