diff --git a/binutils/ChangeLog b/binutils/ChangeLog index e1cec98e7e..afc380392e 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2020-03-03 Nick Clifton + + PR 25625 + * prdbg.c (pr_tag_type): Remove call to abort. + 2020-03-02 Aaron Merey * binutils/testsuite/binutils-all/debuginfod.exp: Improve port diff --git a/binutils/prdbg.c b/binutils/prdbg.c index ef6fe61a0f..1b376f485f 100644 --- a/binutils/prdbg.c +++ b/binutils/prdbg.c @@ -1624,7 +1624,7 @@ pr_tag_type (void *p, const char *name, unsigned int id, t = "union class "; break; default: - abort (); + /* PR 25625: Corrupt input can trigger this case. */ return FALSE; }