소스 검색

entry.c: Fix null pointer exception

Signed-off-by: Callum Farmer <gmbr3@opensuse.org>
Callum Farmer 1 년 전
부모
커밋
74b7b5e92c
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      lib/entry.c

+ 4 - 4
lib/entry.c

@@ -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();
 	}
 }