aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1992-05-26 19:08:48 +0000
committerSteve Chamberlain <sac@cygnus>1992-05-26 19:08:48 +0000
commit954d412a061e19fdce08af66e1719f5fca4f6a30 (patch)
tree85bb7eb6cf8dfcbecc0455eaadecfc9f1a7b884d /bfd
parent20ccefe6d48bf31a0c1400ea376f2d917e502156 (diff)
downloadfsf-binutils-gdb-954d412a061e19fdce08af66e1719f5fca4f6a30.zip
fsf-binutils-gdb-954d412a061e19fdce08af66e1719f5fca4f6a30.tar.gz
fsf-binutils-gdb-954d412a061e19fdce08af66e1719f5fca4f6a30.tar.bz2
Fix some typos
Diffstat (limited to 'bfd')
-rw-r--r--bfd/coffcode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/coffcode.h b/bfd/coffcode.h
index cdb94eb..d978e30 100644
--- a/bfd/coffcode.h
+++ b/bfd/coffcode.h
@@ -2271,7 +2271,7 @@ coff_add_missing_symbols (abfd)
coff_symbol_type *csym = coff_symbol_from (abfd, sympp[i]);
CONST char *name;
- if (csym->native->u.syment.n_sclass == C_FILE)
+ if (csym->native && csym->native->u.syment.n_sclass == C_FILE)
{
need_file = 0;
continue;
@@ -3312,7 +3312,7 @@ DEFUN(coff_slurp_symbol_table,(abfd),
fprintf(stderr,"Unrecognized storage class %d\n",
src->u.syment.n_sclass);
- abort();
+/* abort();*/
dst->symbol.flags = BSF_DEBUGGING;
dst->symbol.value = (src->u.syment.n_value);
break;