summaryrefslogtreecommitdiff
path: root/gdb/coffread.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@debian.org>2007-10-11 19:48:02 +0000
committerDaniel Jacobowitz <dan@debian.org>2007-10-11 19:48:02 +0000
commit371dfe76bf2a848d69e83b8ffa7474f6b06fcd6f (patch)
treeef32494312cb14b48508633c3bd349f03e849053 /gdb/coffread.c
parente3bf7235b038947cc31bfe4c115c84f736f6a436 (diff)
downloadgdb-371dfe76bf2a848d69e83b8ffa7474f6b06fcd6f.tar.gz
PR gdb/2280
* coffread.c (read_one_sym): Check for read errors.
Diffstat (limited to 'gdb/coffread.c')
-rw-r--r--gdb/coffread.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/gdb/coffread.c b/gdb/coffread.c
index b767eaff713..c4927490b99 100644
--- a/gdb/coffread.c
+++ b/gdb/coffread.c
@@ -1116,20 +1116,29 @@ read_one_sym (struct coff_symbol *cs,
union internal_auxent *aux)
{
int i;
+ bfd_size_type bytes;
cs->c_symnum = symnum;
- bfd_bread (temp_sym, local_symesz, nlist_bfd_global);
+ bytes = bfd_bread (temp_sym, local_symesz, nlist_bfd_global);
+ if (bytes != local_symesz)
+ error ("%s: error reading symbols", current_objfile->name);
bfd_coff_swap_sym_in (symfile_bfd, temp_sym, (char *) sym);
cs->c_naux = sym->n_numaux & 0xff;
if (cs->c_naux >= 1)
{
- bfd_bread (temp_aux, local_auxesz, nlist_bfd_global);
+ bytes = bfd_bread (temp_aux, local_auxesz, nlist_bfd_global);
+ if (bytes != local_auxesz)
+ error ("%s: error reading symbols", current_objfile->name);
bfd_coff_swap_aux_in (symfile_bfd, temp_aux, sym->n_type, sym->n_sclass,
0, cs->c_naux, (char *) aux);
/* If more than one aux entry, read past it (only the first aux
is important). */
for (i = 1; i < cs->c_naux; i++)
- bfd_bread (temp_aux, local_auxesz, nlist_bfd_global);
+ {
+ bytes = bfd_bread (temp_aux, local_auxesz, nlist_bfd_global);
+ if (bytes != local_auxesz)
+ error ("%s: error reading symbols", current_objfile->name);
+ }
}
cs->c_name = getsymname (sym);
cs->c_value = sym->n_value;