Amend r232857, now dropping the casts entirely, as they were not
necessary at all. Submitted by: stefanf
This commit is contained in:
parent
8f061f61db
commit
3c5b7c6fb9
@ -1895,7 +1895,7 @@ preinit_main(void)
|
||||
int index;
|
||||
|
||||
preinit_addr = (Elf_Addr *)obj_main->preinit_array;
|
||||
if (preinit_addr == (Elf_Addr *)NULL)
|
||||
if (preinit_addr == NULL)
|
||||
return;
|
||||
|
||||
for (index = 0; index < obj_main->preinit_array_num; index++) {
|
||||
@ -2036,7 +2036,7 @@ objlist_call_init(Objlist *list, RtldLockState *lockstate)
|
||||
call_initfini_pointer(elm->obj, elm->obj->init);
|
||||
}
|
||||
init_addr = (Elf_Addr *)elm->obj->init_array;
|
||||
if (init_addr != (Elf_Addr *)NULL) {
|
||||
if (init_addr != NULL) {
|
||||
for (index = 0; index < elm->obj->init_array_num; index++) {
|
||||
if (init_addr[index] != 0 && init_addr[index] != 1) {
|
||||
dbg("calling init function for %s at %p", elm->obj->path,
|
||||
|
Loading…
Reference in New Issue
Block a user