summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-11-13 17:00:54 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-11-13 17:00:54 +0000
commitdffa79f51c1c06096d4726834c4df2dcc0d4ea7a (patch)
tree27414432e0e0509b37e0534c20ca98072dc38394
parenta4605261f54720b1df6712610e2f5e845777ad4d (diff)
downloadATCD-dffa79f51c1c06096d4726834c4df2dcc0d4ea7a.tar.gz
ChangeLogTag:Tue Nov 13 08:58:13 2001 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a9
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Notify_ProxyPushSupplier_i.cpp2
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Notify_StructuredProxyPushSupplier_i.cpp3
3 files changed, 11 insertions, 3 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index e66d65a7226..380e25f8a73 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,12 @@
+Tue Nov 13 08:58:13 2001 Ossama Othman <ossama@uci.edu>
+
+ * orbsvcs/orbsvcs/Notify/Notify_ProxyPushSupplier_i.cpp
+ (dispatch_event_i):
+ * orbsvcs/orbsvcs/Notify/Notify_StructuredProxyPushSupplier_i.cpp
+ (dispatch_event_i):
+
+ Silence a fuzz warning. The code is correct.
+
Mon Nov 12 21:28:01 2001 Nanbor Wang <nanbor@cs.wustl.edu>
* performance-tests/Cubit/TAO/IDL_Cubit/run_test.pl
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Notify_ProxyPushSupplier_i.cpp b/TAO/orbsvcs/orbsvcs/Notify/Notify_ProxyPushSupplier_i.cpp
index c97f2c03cfc..77dc6a501a0 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Notify_ProxyPushSupplier_i.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Notify_ProxyPushSupplier_i.cpp
@@ -31,7 +31,7 @@ TAO_Notify_ProxyPushSupplier_i::dispatch_event_i (TAO_Notify_Event &event, CORBA
{
ACE_DEBUG ((LM_DEBUG, "Exception dispatching any event\n"));
// misbehaving client,
- this->shutdown (ACE_TRY_ENV);
+ this->shutdown (ACE_TRY_ENV); // FUZZ: ignore check_for_ace_check
}
ACE_ENDTRY;
}
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Notify_StructuredProxyPushSupplier_i.cpp b/TAO/orbsvcs/orbsvcs/Notify/Notify_StructuredProxyPushSupplier_i.cpp
index b4be67776d1..5f09e0ec93d 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Notify_StructuredProxyPushSupplier_i.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Notify_StructuredProxyPushSupplier_i.cpp
@@ -81,8 +81,7 @@ TAO_Notify_StructuredProxyPushSupplier_i::dispatch_event_i (TAO_Notify_Event &ev
{
ACE_DEBUG ((LM_DEBUG, "Exception dispatching structured event\n"));
// misbehaving client,
- this->shutdown (ACE_TRY_ENV);
- ACE_TRY_CHECK;
+ this->shutdown (ACE_TRY_ENV); // FUZZ: ignore check_for_ace_check
}
ACE_ENDTRY;
}