diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-08-27 07:40:23 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-08-27 07:40:23 +0000 |
commit | 2f88c3244e1f5caabec33e020425fe4710a95fc7 (patch) | |
tree | 0aea175bab97239abf3174e2dba1db09fca17527 /bfd | |
parent | 230a95ce5a67898210a4a9654c4dfd5e685ca672 (diff) | |
download | fsf-binutils-gdb-2f88c3244e1f5caabec33e020425fe4710a95fc7.zip fsf-binutils-gdb-2f88c3244e1f5caabec33e020425fe4710a95fc7.tar.gz fsf-binutils-gdb-2f88c3244e1f5caabec33e020425fe4710a95fc7.tar.bz2 |
* archures.c (bfd_archures_list): Always NULL terminate the list.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/archures.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 775d9fc..7a960f0 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +Wed Aug 27 17:33:07 1997 Andrew Cagney <cagney@b1.cygnus.com> + + * archures.c (bfd_archures_list): Always NULL terminate the list. + Tue Aug 26 17:26:51 1997 Ian Lance Taylor <ian@cygnus.com> * Makefile.am: Rebuild dependencies. diff --git a/bfd/archures.c b/bfd/archures.c index aef3636..9e0cbd6 100644 --- a/bfd/archures.c +++ b/bfd/archures.c @@ -271,8 +271,8 @@ static const bfd_arch_info_type * const bfd_archures_list[] = /* start-sanitize-v850*/ &bfd_v850_arch, /* end-sanitize-v850 */ - 0 #endif + 0 }; /* |