summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-07-10 03:33:37 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-07-10 03:33:37 +0000
commitd2b1b861aed66e06e7cb613fa1dc3063167de8ef (patch)
tree3a3204c95501cabfa1c4e98c9dde99de5096f0cb
parent7ff16788105228d32666e14787151cac60acf6b0 (diff)
downloadATCD-d2b1b861aed66e06e7cb613fa1dc3063167de8ef.tar.gz
ChangeLogTag:Wed Jul 9 22:31:54 2003 Oliver Kellogg <oliver.kellogg@sysde.eads.net>
-rw-r--r--TAO/ChangeLog6
-rw-r--r--TAO/tao/IIOP_Connection_Handler.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index a8327ae74aa..207a8251f82 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,9 @@
+Wed Jul 9 22:31:54 2003 Oliver Kellogg <oliver.kellogg@sysde.eads.net>
+
+ * tao/IIOP_Connection_Handler.cpp (set_dscp_codepoint): Valgrind
+ found that the local variable `tos' was not initialized in all
+ possible paths of control flow.
+
Tue Jul 08 15:24:33 2003 Pradeep Gore <pradeep@oomworks.com>
* docs/releasenotes/index.html:
diff --git a/TAO/tao/IIOP_Connection_Handler.cpp b/TAO/tao/IIOP_Connection_Handler.cpp
index 46c61744cdb..07344f37a88 100644
--- a/TAO/tao/IIOP_Connection_Handler.cpp
+++ b/TAO/tao/IIOP_Connection_Handler.cpp
@@ -334,7 +334,7 @@ TAO_IIOP_Connection_Handler::enable_network_priority (void)
int
TAO_IIOP_Connection_Handler::set_dscp_codepoint (void)
{
- int tos;
+ int tos = 0;
if (this->enable_network_priority ())
{
ACE_DECLARE_NEW_CORBA_ENV;