https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=232176
Ed Maste <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected], | |[email protected] --- Comment #1 from Ed Maste <[email protected]> --- Workaround is to just disable filter_reloc(): diff --git a/elfcopy/sections.c b/elfcopy/sections.c index 037f9288..78b06ca6 100644 --- a/elfcopy/sections.c +++ b/elfcopy/sections.c @@ -689,6 +689,8 @@ filter_reloc(struct elfcopy *ecp, struct section *s) uint64_t cap, n, nrels; int elferr, i; + return; /* PR232176 */ + if (gelf_getshdr(s->is, &ish) == NULL) errx(EXIT_FAILURE, "gelf_getehdr() failed: %s", elf_errmsg(-1)); -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
