summaryrefslogtreecommitdiff
path: root/ACE/examples/APG
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2011-05-23 07:11:11 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2011-05-23 07:11:11 +0000
commit0820ce390cf17289f114bee4db92ac636914eaa6 (patch)
tree2847ab4849d092776a3b3c2673000ad89b9065f2 /ACE/examples/APG
parentc9aa228cb19e955d80971f572ca3da448b0d81a8 (diff)
downloadATCD-0820ce390cf17289f114bee4db92ac636914eaa6.tar.gz
Mon May 23 07:10:41 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/APG/Naming/Name_Binding.h: * netsvcs/lib/Client_Logging_Handler.cpp: Fixed incorrect delete
Diffstat (limited to 'ACE/examples/APG')
-rw-r--r--ACE/examples/APG/Naming/Name_Binding.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/examples/APG/Naming/Name_Binding.h b/ACE/examples/APG/Naming/Name_Binding.h
index 6c093a941f2..1feecae91e4 100644
--- a/ACE/examples/APG/Naming/Name_Binding.h
+++ b/ACE/examples/APG/Naming/Name_Binding.h
@@ -31,8 +31,8 @@ public:
~Name_Binding ()
{
- delete this->name_;
- delete this->value_;
+ delete[] this->name_;
+ delete[] this->value_;
ACE_OS::free (const_cast<char*> (this->type_));
this->type_ = 0;
}