summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-06-18 18:58:42 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-06-18 18:58:42 +0000
commit7e4c3d8b1d199ca3f72341aba9e1916f0cd78257 (patch)
tree7114d95a96d639725ab09ec738a926a622a06d72 /cpukit/score/inline
parentAdded freebsd support from Dario Alcocer <alcocer@connectnet.com>. (diff)
downloadrtems-7e4c3d8b1d199ca3f72341aba9e1916f0cd78257.tar.bz2
Modified _Objects_Is_class_valid() to correctly report that 0 was
not a valid object class. This was discovered while looking for a bug reported by Jennifer.
Diffstat (limited to 'cpukit/score/inline')
-rw-r--r--cpukit/score/inline/rtems/score/object.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/inline/rtems/score/object.inl b/cpukit/score/inline/rtems/score/object.inl
index 101779ea80..7e4d12aeec 100644
--- a/cpukit/score/inline/rtems/score/object.inl
+++ b/cpukit/score/inline/rtems/score/object.inl
@@ -101,7 +101,7 @@ RTEMS_INLINE_ROUTINE boolean _Objects_Is_class_valid(
Objects_Classes the_class
)
{
- return the_class <= OBJECTS_CLASSES_LAST;
+ return the_class && the_class <= OBJECTS_CLASSES_LAST;
}
/*PAGE