summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-04-10 11:43:25 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-04-10 11:43:25 +0000
commitc851609b691985ff169155388066cb8e705ef0cd (patch)
treef362aaf3391af00f0e849f23914f0b2aef888ccb /TAO
parentc4f95c2ab4d9e99a338348b6b414ce1aa18e95b4 (diff)
downloadATCD-c851609b691985ff169155388066cb8e705ef0cd.tar.gz
Thu Apr 10 11:42:34 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO')
-rw-r--r--TAO/ChangeLog5
-rw-r--r--TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp2
2 files changed, 6 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index d5aae5d87be..8752d6cf5e4 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,8 @@
+Thu Apr 10 11:42:34 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * tao/DynamicInterface/DII_Invocation_Adapter.cpp:
+ Fixed invalid delete
+
Thu Apr 10 11:29:34 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableServer/Active_Object_Map.{h,cpp}:
diff --git a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp
index 7723f33cdca..767d6c6e7ae 100644
--- a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp
+++ b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp
@@ -52,7 +52,7 @@ namespace TAO
DII_Invocation_Adapter::~DII_Invocation_Adapter (void)
{
- delete ex_data_;
+ delete[] ex_data_;
}
void