From d6a8ffb583eb3f55ec525d770c8491ef1f8381c2 Mon Sep 17 00:00:00 2001 From: Hans-Peter Nilsson Date: Mon, 7 Feb 2005 02:58:27 +0000 Subject: * aoutx.h (aout_link_add_symbols): Just return TRUE if a warning symbol was last. --- bfd/aoutx.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bfd/aoutx.h') diff --git a/bfd/aoutx.h b/bfd/aoutx.h index beb63f9b1f..ab3eb67bcd 100644 --- a/bfd/aoutx.h +++ b/bfd/aoutx.h @@ -3430,8 +3430,9 @@ aout_link_add_symbols (abfd, info) break; case N_WARNING: /* A warning symbol. The next symbol is the one to warn - about. */ - BFD_ASSERT (p + 1 < pend); + about. If there is no next symbol, just look away. */ + if (p + 1 >= pend) + return TRUE; ++p; string = name; name = strings + GET_WORD (abfd, p->e_strx); -- cgit v1.2.1