The branch releng/13.0 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=07eed38ae2de9b0194c1beef797c05cf57cdcd97
commit 07eed38ae2de9b0194c1beef797c05cf57cdcd97 Author: David Chisnall <[email protected]> AuthorDate: 2021-02-02 14:06:33 +0000 Commit: Konstantin Belousov <[email protected]> CommitDate: 2021-02-09 15:05:44 +0000 rtld: Fix null-pointer dereference Approved by: re (gjb) (cherry picked from commit 43d44842aef3972cc86ce673e84e31f372257b15) --- libexec/rtld-elf/rtld.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libexec/rtld-elf/rtld.c b/libexec/rtld-elf/rtld.c index 7b8bfba84d7d..b186bebbfefc 100644 --- a/libexec/rtld-elf/rtld.c +++ b/libexec/rtld-elf/rtld.c @@ -894,8 +894,10 @@ _rtld_bind(Obj_Entry *obj, Elf_Size reloff) target = (Elf_Addr)(defobj->relocbase + def->st_value); dbg("\"%s\" in \"%s\" ==> %p in \"%s\"", - defobj->strtab + def->st_name, basename(obj->path), - (void *)target, basename(defobj->path)); + defobj->strtab + def->st_name, + obj->path == NULL ? NULL : basename(obj->path), + (void *)target, + defobj->path == NULL ? NULL : basename(defobj->path)); /* * Write the new contents for the jmpslot. Note that depending on _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
