diff options
author | Michael Snyder <msnyder@vmware.com> | 2007-07-26 18:45:13 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2007-07-26 18:45:13 +0000 |
commit | 3d7b34d85ba1babf7cf086dc6651bd1bfe0f99fc (patch) | |
tree | 8c9864b5fea8d714c48e433b71814ea9ca746f80 /bfd/srec.c | |
parent | 2007-07-26 Michael Snyder <msnyder@access-company.com> (diff) | |
download | binutils-gdb-3d7b34d85ba1babf7cf086dc6651bd1bfe0f99fc.tar.gz binutils-gdb-3d7b34d85ba1babf7cf086dc6651bd1bfe0f99fc.tar.bz2 binutils-gdb-3d7b34d85ba1babf7cf086dc6651bd1bfe0f99fc.zip |
2007-07-26 Michael Snyder <msnyder@access-company.com>
* srec.c (srec_scan): Check for EOF (critical because return value
will be used as array index).
Diffstat (limited to 'bfd/srec.c')
-rw-r--r-- | bfd/srec.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bfd/srec.c b/bfd/srec.c index ebb039bba36..371e53a3665 100644 --- a/bfd/srec.c +++ b/bfd/srec.c @@ -428,6 +428,11 @@ srec_scan (bfd *abfd) symval <<= 4; symval += NIBBLE (c); c = srec_get_byte (abfd, &error); + if (c == EOF) + { + srec_bad_byte (abfd, lineno, c, error); + goto error_return; + } } if (! srec_new_symbol (abfd, symname, symval)) |