summaryrefslogtreecommitdiff
path: root/ace/Containers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Containers.cpp')
-rw-r--r--ace/Containers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Containers.cpp b/ace/Containers.cpp
index 19d566b4f37..43358d8b5cf 100644
--- a/ace/Containers.cpp
+++ b/ace/Containers.cpp
@@ -228,7 +228,7 @@ ACE_Unbounded_Stack<T>::push (const T &new_item)
{
// ACE_TRACE ("ACE_Unbounded_Stack<T>::push");
- ACE_Node<T> *temp = 0;
+ ACE_Node<T> *temp;
ACE_NEW_MALLOC_RETURN (temp,
(ACE_Node<T>*) this->allocator_->malloc (sizeof (ACE_Node<T>)),