aboutsummaryrefslogtreecommitdiff
path: root/bfd/ecoff.c
diff options
context:
space:
mode:
authorCary Coutant <ccoutant@google.com>2013-05-16 16:34:51 +0000
committerCary Coutant <ccoutant@google.com>2013-05-16 16:34:51 +0000
commitaf65e5888e7119f02ee63a93d8c8ffc2424aa6eb (patch)
treeaf0c1323d781688f5203697cde93b57747b91251 /bfd/ecoff.c
parent9f6e76f4ea8ddee6d6d2b1aa7c61e9cb69063196 (diff)
downloadfsf-binutils-gdb-af65e5888e7119f02ee63a93d8c8ffc2424aa6eb.zip
fsf-binutils-gdb-af65e5888e7119f02ee63a93d8c8ffc2424aa6eb.tar.gz
fsf-binutils-gdb-af65e5888e7119f02ee63a93d8c8ffc2424aa6eb.tar.bz2
bfd/
* ecoff.c (ecoff_link_check_archive_element): Add initializers for external_ext_size and esize.
Diffstat (limited to 'bfd/ecoff.c')
-rw-r--r--bfd/ecoff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/ecoff.c b/bfd/ecoff.c
index 5add50c..7bfb333 100644
--- a/bfd/ecoff.c
+++ b/bfd/ecoff.c
@@ -3561,9 +3561,9 @@ ecoff_link_check_archive_element (bfd *abfd,
void (* const swap_ext_in) (bfd *, void *, EXTR *)
= backend->debug_swap.swap_ext_in;
HDRR *symhdr;
- bfd_size_type external_ext_size;
+ bfd_size_type external_ext_size = 0;
void * external_ext = NULL;
- bfd_size_type esize;
+ bfd_size_type esize = 0;
char *ssext = NULL;
char *ext_ptr;
char *ext_end;