aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1994-02-25 21:09:09 +0000
committerSteve Chamberlain <sac@cygnus>1994-02-25 21:09:09 +0000
commit5e808126677845ec035cc169e41c909be3ec90f4 (patch)
treef89865519034b0e400f82ed7378a4523d49f213d /bfd
parentd6074cddec836e54512c45280ddcad51e9853505 (diff)
downloadgdb-5e808126677845ec035cc169e41c909be3ec90f4.zip
gdb-5e808126677845ec035cc169e41c909be3ec90f4.tar.gz
gdb-5e808126677845ec035cc169e41c909be3ec90f4.tar.bz2
* srec.c (pass_over): Don't skip too many characters when
end of line seen.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/srec.c11
2 files changed, 10 insertions, 6 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index a6b8961..ffb339b 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+Fri Feb 25 12:57:00 1994 Steve Chamberlain (sac@jonny.cygnus.com)
+
+ * srec.c (pass_over): Don't skip too many characters when
+ end of line seen.
+
Fri Feb 25 11:41:57 1994 Ian Lance Taylor (ian@cygnus.com)
* ecoff.c (ecoff_sizeof_headers): Align result to 16 byte
diff --git a/bfd/srec.c b/bfd/srec.c
index 06432b9..5e020a2 100644
--- a/bfd/srec.c
+++ b/bfd/srec.c
@@ -224,7 +224,7 @@ fillup_symbols (abfd, buf, len, val)
abfd->tdata.srec_data->strings = (char *) bfd_alloc (abfd, abfd->tdata.srec_data->string_size);
if (!abfd->tdata.srec_data->symbols || !abfd->tdata.srec_data->strings)
{
- bfd_error = no_memory;
+ bfd_set_error (bfd_error_no_memory);
abort (); /* FIXME */
}
abfd->tdata.srec_data->symbol_idx = 0;
@@ -314,7 +314,7 @@ DEFUN (srec_mkobject, (abfd),
tdata_type *tdata = (tdata_type *) bfd_alloc (abfd, sizeof (tdata_type));
if (!tdata)
{
- bfd_error = no_memory;
+ bfd_set_error (bfd_error_no_memory);
return false;
}
abfd->tdata.srec_data = tdata;
@@ -350,7 +350,6 @@ pass_over (abfd, func, symbolfunc, section)
switch (*src)
{
default:
- eof = (boolean) (bfd_read (src, 1, 1, abfd) != 1);
if (eof)
return;
break;
@@ -533,7 +532,7 @@ DEFUN (srec_get_section_contents, (abfd, section, location, offset, count),
section->used_by_bfd = (PTR) bfd_alloc (abfd, section->_raw_size);
if (!section->used_by_bfd)
{
- bfd_error = no_memory;
+ bfd_set_error (bfd_error_no_memory);
return false;
}
@@ -574,7 +573,7 @@ DEFUN (srec_set_section_contents, (abfd, section, location, offset, bytes_to_do)
if (!entry)
{
- bfd_error = no_memory;
+ bfd_set_error (bfd_error_no_memory);
return false;
}
@@ -584,7 +583,7 @@ DEFUN (srec_set_section_contents, (abfd, section, location, offset, bytes_to_do)
unsigned char *data = (unsigned char *) bfd_alloc (abfd, bytes_to_do);
if (!data)
{
- bfd_error = no_memory;
+ bfd_set_error (bfd_error_no_memory);
return false;
}
memcpy (data, location, bytes_to_do);