summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog-97b6
-rw-r--r--ace/Parse_Node.cpp8
2 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog-97b b/ChangeLog-97b
index e020aad3a9d..4d4b1819500 100644
--- a/ChangeLog-97b
+++ b/ChangeLog-97b
@@ -1,3 +1,9 @@
+Tue Oct 7 07:07:45 1997 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * ace/Parse_Node.cpp (symbol): Added an ACE_ERROR_RETURN instead
+ of an ACE_RETURN to bail out if an error occurs. Thanks to Eric
+ Newton for reporting this.
+
Tue Oct 7 10:57:48 1997 Carlos O'Ryan <coryan@swarm.cs.wustl.edu>
* ace/OS.h:
diff --git a/ace/Parse_Node.cpp b/ace/Parse_Node.cpp
index 2c090641e22..6d326fa6d29 100644
--- a/ace/Parse_Node.cpp
+++ b/ace/Parse_Node.cpp
@@ -585,9 +585,11 @@ ACE_Static_Function_Node::symbol (void)
{
ace_yyerrno++;
- ACE_ERROR ((LM_ERROR,
- "no static service registered for function %s\n",
- this->function_name_));
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "no static service registered for function %s\n
+",
+ this->function_name_),
+ 0);
}
}