2002-10-24 Fabrizio Pirovano <pirovano.thysys@tiscalinet.it>

* capture/capture.c, monitor/mon-manager.c, stackchk/check.c:
	Patch to remove problems introduced by object name rework.
This commit is contained in:
Joel Sherrill
2002-10-24 22:19:27 +00:00
parent 38ad163054
commit 12857dda9a
8 changed files with 26 additions and 10 deletions

View File

@@ -39,9 +39,12 @@ rtems_monitor_manager_next(
{
copy = (rtems_monitor_generic_t *) canonical;
copy->id = object->id;
_Objects_Copy_name_raw(object->name, &copy->name, sizeof(copy->name));
}
if(table->is_string)
_Objects_Copy_name_raw(object->name, &copy->name, sizeof(copy->name));
else
_Objects_Copy_name_raw(&object->name, &copy->name, sizeof(copy->name));
}
done:
return object;
}