aboutsummaryrefslogtreecommitdiff
path: root/bfd/coff-rs6000.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2002-02-11 02:17:39 +0000
committerDaniel Jacobowitz <drow@false.org>2002-02-11 02:17:39 +0000
commitd426c6b07f24df631df0e290bf3034b61498aee5 (patch)
treec79fa062451fa1d359dbe5543e1247e6d98bce5f /bfd/coff-rs6000.c
parentcd0b1e215c70e35da5d67ca09f0108278ed5f0b6 (diff)
downloadgdb-d426c6b07f24df631df0e290bf3034b61498aee5.zip
gdb-d426c6b07f24df631df0e290bf3034b61498aee5.tar.gz
gdb-d426c6b07f24df631df0e290bf3034b61498aee5.tar.bz2
2002-02-10 Daniel Jacobowitz <drow@mvista.com>
* coff-rs6000.c (xcoff_generate_rtinit): Silence uninitialized variable warnings. * elf32-sh.c (sh_elf_relax_section): Silence signed/unsigned comparison warning. * trad-core.c (trad_unix_core_file_p): Silence pointer/integer cast warnings for the common case.
Diffstat (limited to 'bfd/coff-rs6000.c')
-rw-r--r--bfd/coff-rs6000.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/coff-rs6000.c b/bfd/coff-rs6000.c
index 2d6d6e9..2772929 100644
--- a/bfd/coff-rs6000.c
+++ b/bfd/coff-rs6000.c
@@ -3062,7 +3062,7 @@ xcoff_generate_rtinit (abfd, init, fini)
bfd_byte reloc_ext[RELSZ * 2];
bfd_byte *data_buffer;
bfd_size_type data_buffer_size;
- bfd_byte *string_table, *st_tmp;
+ bfd_byte *string_table = NULL, *st_tmp = NULL;
bfd_size_type string_table_size;
bfd_vma val;
size_t initsz, finisz;