summaryrefslogtreecommitdiff
path: root/ACE/ACEXML
diff options
context:
space:
mode:
authorkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-02-13 20:35:10 +0000
committerkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-02-13 20:35:10 +0000
commite774c434e0ef3e03372ae7431955c8c688ebadd5 (patch)
tree4053fc8a62673f25ffee510e170da707aa8f3857 /ACE/ACEXML
parent8e3d865fc0300d640a0e897c43f8ebfc692ebf1c (diff)
downloadATCD-e774c434e0ef3e03372ae7431955c8c688ebadd5.tar.gz
ChangeLogTag: Tue Feb 13 20:33:58 UTC 2007 Krishnakumar B <kitty@dre.vanderbilt.edu>
Diffstat (limited to 'ACE/ACEXML')
-rw-r--r--ACE/ACEXML/ChangeLog9
-rw-r--r--ACE/ACEXML/apps/svcconf/Svcconf_Handler.cpp5
2 files changed, 13 insertions, 1 deletions
diff --git a/ACE/ACEXML/ChangeLog b/ACE/ACEXML/ChangeLog
index a75cf4f65a1..edc017bf78c 100644
--- a/ACE/ACEXML/ChangeLog
+++ b/ACE/ACEXML/ChangeLog
@@ -1,3 +1,10 @@
+Tue Feb 13 20:17:28 UTC 2007 Krishnakumar B <kitty@nospam.invalid.domain>
+
+ * apps/svcconf/Svcconf_Handler.cpp: Fixed a problem with
+ ACE_Module getting unloaded prematurely due to
+ ACEXML_Svcconf_Handler failing to register it with the service
+ repository. Thanks to gzeleniy@gmail.com for providing the fix.
+
Wed Jan 03 14:20:00 UTC 2007 Simon Massey <sma@prismtech.com>
* common/XML_Macros.h:
@@ -278,7 +285,7 @@ Tue Aug 17 19:07:11 2004 J.T. Conklin <jtc@acorntoolworks.com>
used with the "new (std::nothrow)" version of ACE_NEW_RETURN.
Fortunately, the "struct" is unnecessary.
-Sat Feb 21 23:51:25 2004 . <.@isis.vanderbilt.edu>
+Sat Feb 21 23:51:25 2004 Krishnakumar B <kitty@isis.vanderbilt.edu>
* common/Exception.h:
* common/Exception.cpp:
diff --git a/ACE/ACEXML/apps/svcconf/Svcconf_Handler.cpp b/ACE/ACEXML/apps/svcconf/Svcconf_Handler.cpp
index 2b0d9d39718..d592c5f743c 100644
--- a/ACE/ACEXML/apps/svcconf/Svcconf_Handler.cpp
+++ b/ACE/ACEXML/apps/svcconf/Svcconf_Handler.cpp
@@ -147,6 +147,11 @@ ACEXML_Svcconf_Handler::endElement (const ACEXML_Char *,
mp->name ()));
mp->name (active_info->name ());
}
+ ACE_Service_Type *stype
+ = ACE_Service_Config::create_service_type (active_info->name (),
+ stp,
+ svc_dll,
+ active_info->active ());
if (mt->init (args.argc (), args.argv ()) == -1
|| this->stream_->push (mt) == -1)