diff options
author | Stan Shebs <shebs@apple.com> | 1999-05-05 14:45:51 +0000 |
---|---|---|
committer | Stan Shebs <shebs@apple.com> | 1999-05-05 14:45:51 +0000 |
commit | 049f10d7dc48a42b664a15149f83d5c3db004ef7 (patch) | |
tree | 8dd4e1a383afddd41a30a65adf68142dfd45ec72 /gdb/coffread.c | |
parent | 1942e83ab587eb3c0c54e57e9d1c9e11c17ac07e (diff) | |
download | gdb-049f10d7dc48a42b664a15149f83d5c3db004ef7.tar.gz |
import gdb-19990504 snapshot
Diffstat (limited to 'gdb/coffread.c')
-rw-r--r-- | gdb/coffread.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gdb/coffread.c b/gdb/coffread.c index 9c8f4754057..56c1438b239 100644 --- a/gdb/coffread.c +++ b/gdb/coffread.c @@ -686,6 +686,17 @@ coff_symfile_read (objfile, section_offsets, mainline) if (info->stabsects) { + if (! info->stabstrsect) + { + error_begin (); + fprintf_filtered + (gdb_stderr, + ("The debugging information in `%s' is corrupted.\n" + "The file has a `.stabs' section, but no `.stabstr' section.\n"), + name); + return_to_top_level (RETURN_ERROR); + } + /* FIXME: dubious. Why can't we use something normal like bfd_get_section_contents? */ bfd_seek (abfd, abfd->where, 0); |