From e0dcf294382b4b9f2402d9f42813468dfdbf7b18 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 5 Apr 2019 09:58:07 +0200 Subject: Remove superfluous run-time check The _Objects_Information_table[ the_api ] is never NULL for a valid API index. --- cpukit/posix/src/killinfo.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'cpukit/posix') diff --git a/cpukit/posix/src/killinfo.c b/cpukit/posix/src/killinfo.c index 0031b7bdd8..742f9fb2c1 100644 --- a/cpukit/posix/src/killinfo.c +++ b/cpukit/posix/src/killinfo.c @@ -196,13 +196,7 @@ int _POSIX_signals_Send( interested_priority = UINT64_MAX; for (the_api = OBJECTS_CLASSIC_API; the_api <= OBJECTS_APIS_LAST; the_api++) { - - /* - * This can occur when no one is interested and an API is not configured. - */ - if ( !_Objects_Information_table[ the_api ] ) - continue; - + _Assert( _Objects_Information_table[ the_api ] != NULL ); the_info = _Objects_Information_table[ the_api ][ 1 ]; if ( !the_info ) continue; -- cgit v1.2.3