summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2011-09-22 14:55:20 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2011-09-22 14:55:20 +0000
commit8084163f8445d024c21be637515f42d93eaf4eb6 (patch)
treebe9ea0982c83fb154749d2dcaf5818a094a0d3d8
parent3b9005e397c289d42616c0064e883154b34d0cd2 (diff)
downloadATCD-8084163f8445d024c21be637515f42d93eaf4eb6.tar.gz
initialise pointer with 0
-rw-r--r--ACE/ace/Hash_Multi_Map_Manager_T.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/Hash_Multi_Map_Manager_T.inl b/ACE/ace/Hash_Multi_Map_Manager_T.inl
index f0cbcabe599..245870834c9 100644
--- a/ACE/ace/Hash_Multi_Map_Manager_T.inl
+++ b/ACE/ace/Hash_Multi_Map_Manager_T.inl
@@ -91,7 +91,7 @@ template <class EXT_ID, class INT_ID, class HASH_KEY, class COMPARE_KEYS, class
ACE_Hash_Multi_Map_Manager<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK>::bind_i (const EXT_ID &ext_id,
const INT_ID &int_id)
{
- ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID> *temp;
+ ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID> *temp = 0;
return this->bind_i (ext_id, int_id, temp);
}