summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2000-03-13 01:20:59 +0000
committerbala <balanatarajan@users.noreply.github.com>2000-03-13 01:20:59 +0000
commite3a2568ceb37fdb66e915b28bd63577bfa80d312 (patch)
tree482c1f62135fe96a09ff8e2a42481c81611f85c6
parent416a5f0b62a66c2a0a0cc07a51c17eb1883fe67f (diff)
downloadATCD-e3a2568ceb37fdb66e915b28bd63577bfa80d312.tar.gz
ChangeLogTag: Sun Mar 12 19:13:57 2000 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a11
-rw-r--r--TAO/tao/GIOP_Server_Request.cpp2
2 files changed, 13 insertions, 0 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index ac55a82050e..0081f977f94 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,14 @@
+Sun Mar 12 19:13:57 2000 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tao/GIOP_Server_Request.cpp: Initialized the variable
+ sync_with_server_ in the constructors for the class
+ TAO_GIOP_Server_Request. This was creating a problem for
+ Endpoint_Per_Priority test which uses LOCATE_REQUEST to validate
+ connections. The bug was actually nailed down by Marina Spivak
+ <marina@cs.wustl.edu>. It was an awesome detective work by her
+ to have nailed it down to the uninitialized variable in the
+ class.
+
Sun Mar 12 18:42:26 2000 Pradeep Gore <pradeep@flamenco.cs.wustl.edu>
* orbsvcs/orbscvs/orbsvcs.dsp:
diff --git a/TAO/tao/GIOP_Server_Request.cpp b/TAO/tao/GIOP_Server_Request.cpp
index 5bd45d6e149..9f43adf1eef 100644
--- a/TAO/tao/GIOP_Server_Request.cpp
+++ b/TAO/tao/GIOP_Server_Request.cpp
@@ -51,6 +51,7 @@ TAO_GIOP_ServerRequest::
: incoming_ (&input),
outgoing_ (&output),
response_expected_ (0),
+ sync_with_server_ (0),
lazy_evaluation_ (0),
#if !defined (TAO_HAS_MINIMUM_CORBA)
@@ -244,6 +245,7 @@ TAO_GIOP_ServerRequest::
incoming_ (0),
outgoing_ (&output),
response_expected_ (response_expected),
+ sync_with_server_ (0),
lazy_evaluation_ (0),
#if !defined (TAO_HAS_MINIMUM_CORBA)