2003-01-10 Joel Sherrill <joel@OARcorp.com>

* src/objectmp.c: Corrected use of name parameter to reflect that it
	is actually the name not a pointer to the name.
This commit is contained in:
Joel Sherrill
2003-01-10 15:04:01 +00:00
parent 0b178f0436
commit eb7cddd3cf
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
2003-01-10 Joel Sherrill <joel@OARcorp.com>
* src/objectmp.c: Corrected use of name parameter to reflect that it
is actually the name not a pointer to the name.
2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
Makefile.am: Don't create $ARCH.
+1 -1
View File
@@ -163,7 +163,7 @@ Objects_Name_to_id_errors _Objects_MP_Global_name_search (
Chain_Control *the_chain;
Chain_Node *the_node;
Objects_MP_Control *the_object;
unsigned32 name_to_use = *(unsigned32 *)the_name; /* XXX variable */
unsigned32 name_to_use = the_name; /* XXX only fixed length names */
if ( nodes_to_search > _Objects_Maximum_nodes )
return OBJECTS_INVALID_NODE;