summaryrefslogtreecommitdiff
path: root/bfd/aoutx.h
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2005-02-07 02:51:28 +0000
committerHans-Peter Nilsson <hp@axis.com>2005-02-07 02:51:28 +0000
commit262872b1be17715733bae5e72320a4e86483a7fc (patch)
treef7fc7dad5da345ba2f79fcde5bcb62b969c037f7 /bfd/aoutx.h
parentab9d887ac541dd92ae98f3b8b775ad5619b845e6 (diff)
downloadbinutils-redhat-262872b1be17715733bae5e72320a4e86483a7fc.tar.gz
* aoutx.h (NAME(aout,find_nearest_line)): Correct case for N_SO
being the last symbol.
Diffstat (limited to 'bfd/aoutx.h')
-rw-r--r--bfd/aoutx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/aoutx.h b/bfd/aoutx.h
index 2171e84560..beb63f9b1f 100644
--- a/bfd/aoutx.h
+++ b/bfd/aoutx.h
@@ -2748,7 +2748,7 @@ NAME(aout,find_nearest_line)
/* Look ahead to next symbol to check if that too is an N_SO. */
p++;
if (*p == NULL)
- break;
+ goto done;
q = (aout_symbol_type *) (*p);
if (q->type != (int)N_SO)
goto next;