+ Modified correct return path to call _ITRON_return_errorno( E_OK ) instead

of enabling dispatching and returning E_OK.
+  Changed validation of the_thread to validation of location.
This commit is contained in:
Joel Sherrill
1999-11-12 21:12:27 +00:00
parent 6af8143502
commit ea6bfcbe1e
2 changed files with 4 additions and 10 deletions

View File

@@ -29,9 +29,6 @@ ER can_wup(
Objects_Locations location;
the_thread = _ITRON_Task_Get( tskid, &location );
if (!the_thread)
_ITRON_return_errorno( _ITRON_Task_Clarify_get_id_error( tskid ) );
switch ( location ) {
case OBJECTS_REMOTE:
case OBJECTS_ERROR:
@@ -41,9 +38,9 @@ ER can_wup(
/*
* XXX - FILL ME IN.
*/
return E_OK;
_ITRON_return_errorno( E_OK );
}
return E_OBJ; /* XXX - Should never get here */
_ITRON_return_errorno( E_OBJ ); /* XXX - Should never get here */
}