entry.c: Fix null pointer exception

Signed-off-by: Callum Farmer <gmbr3@opensuse.org>
This commit is contained in:
Callum Farmer 2023-05-03 11:19:41 +01:00
parent 9c5403e1e6
commit 74b7b5e92c
1 changed files with 4 additions and 4 deletions

View File

@ -24,13 +24,13 @@ static void ctors(void)
{
for (funcp *location = (void *)&__init_array_start; location < (funcp *)&__init_array_end; location++) {
funcp func = *location;
if (location != NULL)
if (*location != NULL)
func();
}
for (funcp *location = (void *)&__CTOR_END__; location > (funcp *)&__CTOR_LIST__; location--) {
funcp func = *location;
if (location != NULL)
if (*location != NULL)
func();
}
}
@ -39,13 +39,13 @@ static void dtors(void)
{
for (funcp *location = (void *)&__DTOR_LIST__; location < (funcp *)&__DTOR_END__; location++) {
funcp func = *location;
if (location != NULL)
if (*location != NULL)
func();
}
for (funcp *location = (void *)&__fini_array_start; location < (funcp *)&__fini_array_end; location++) {
funcp func = *location;
if (location != NULL)
if (*location != NULL)
func();
}
}