summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2012-11-23 08:08:31 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2012-11-23 08:08:31 +0000
commita9a5980b5471ef6c6f802226a4ebc14d8210f222 (patch)
treecb2ed26ad3a5169fd07ec79a55716acaebea7784
parent788144c48f21e587b34075e10ce64fe04aa60fee (diff)
downloadATCD-a9a5980b5471ef6c6f802226a4ebc14d8210f222.tar.gz
Fri Nov 23 08:07:23 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/ETCL/ETCL_Constraint.inl: Fixed coverity error by initializing pointer value * ace/Message_Queue.h: * ace/Timer_Queue_Iterator.h: Doxygen improvements * ace/Timer_Queue_Iterator.cpp: Initialize all members in default constructor
-rw-r--r--ACE/ChangeLog12
-rw-r--r--ACE/ace/ETCL/ETCL_Constraint.inl1
-rw-r--r--ACE/ace/Message_Queue.h4
-rw-r--r--ACE/ace/Timer_Queue_Iterator.cpp4
-rw-r--r--ACE/ace/Timer_Queue_Iterator.h4
5 files changed, 21 insertions, 4 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index be05d227136..21441bc71fd 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,15 @@
+Fri Nov 23 08:07:23 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/ETCL/ETCL_Constraint.inl:
+ Fixed coverity error by initializing pointer value
+
+ * ace/Message_Queue.h:
+ * ace/Timer_Queue_Iterator.h:
+ Doxygen improvements
+
+ * ace/Timer_Queue_Iterator.cpp:
+ Initialize all members in default constructor
+
Thu Nov 22 13:31:20 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* debian/tao-log.install:
diff --git a/ACE/ace/ETCL/ETCL_Constraint.inl b/ACE/ace/ETCL/ETCL_Constraint.inl
index 914a0ef640f..99878b78f2f 100644
--- a/ACE/ace/ETCL/ETCL_Constraint.inl
+++ b/ACE/ace/ETCL/ETCL_Constraint.inl
@@ -309,6 +309,7 @@ ETCL_Binary_Expr::lhs (void) const
ACE_INLINE
ETCL_Preference::ETCL_Preference (void)
+ : subexpr_ (0)
{}
ACE_INLINE
diff --git a/ACE/ace/Message_Queue.h b/ACE/ace/Message_Queue.h
index a3e9beca101..63f049b31a0 100644
--- a/ACE/ace/Message_Queue.h
+++ b/ACE/ace/Message_Queue.h
@@ -190,10 +190,10 @@ public:
/// and 0 if the queue's state is ACTIVATED or PULSED.
virtual int deactivated (void) = 0;
- /// Get the notification strategy for the <Message_Queue>
+ /// Get the notification strategy for the Message_Queue
virtual ACE_Notification_Strategy *notification_strategy (void) = 0;
- /// Set the notification strategy for the <Message_Queue>
+ /// Set the notification strategy for the Message_Queue
virtual void notification_strategy (ACE_Notification_Strategy *s) = 0;
// = Notification hook.
diff --git a/ACE/ace/Timer_Queue_Iterator.cpp b/ACE/ace/Timer_Queue_Iterator.cpp
index 7a6b4b8d137..83d8d16f9b3 100644
--- a/ACE/ace/Timer_Queue_Iterator.cpp
+++ b/ACE/ace/Timer_Queue_Iterator.cpp
@@ -33,6 +33,10 @@ ACE_Timer_Node_T<TYPE>::dump (void) const
template <class TYPE>
ACE_Timer_Node_T<TYPE>::ACE_Timer_Node_T (void)
+ : act_ (0),
+ prev_ (0),
+ next_ (0),
+ timer_id_ (-1)
{
ACE_TRACE ("ACE_Timer_Node_T::ACE_Timer_Node_T");
}
diff --git a/ACE/ace/Timer_Queue_Iterator.h b/ACE/ace/Timer_Queue_Iterator.h
index 66145fa2e33..b852df5f06e 100644
--- a/ACE/ace/Timer_Queue_Iterator.h
+++ b/ACE/ace/Timer_Queue_Iterator.h
@@ -115,9 +115,9 @@ public:
void set_timer_id (long timer_id);
/// Get the dispatch info. The dispatch information is got
- /// through <info>. This form helps us in preventing allocation and
+ /// through @a info. This form helps us in preventing allocation and
/// deleting data along the criticl path.
- /// @@TODO: We may want to have a copying version too, so that our
+ /// @todo We may want to have a copying version too, so that our
/// interface will be complete..
void get_dispatch_info (ACE_Timer_Node_Dispatch_Info_T <TYPE> &info);