diff options
author | Nick Clifton <nickc@redhat.com> | 2010-04-13 12:20:55 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2010-04-13 12:20:55 +0000 |
commit | 1e70a64d142b7c88b8024545baeed19dd808d576 (patch) | |
tree | 039483a3c7294c5cb8d8c1eba54088c81f65edba /binutils/dwarf.c | |
parent | ae3bccd49af51ab056588ec70dff8364b6266de5 (diff) | |
download | gdb-1e70a64d142b7c88b8024545baeed19dd808d576.zip gdb-1e70a64d142b7c88b8024545baeed19dd808d576.tar.gz gdb-1e70a64d142b7c88b8024545baeed19dd808d576.tar.bz2 |
PR binutils/11419
* dwarf.c (process_debug_info): Initialise the signature array.
Diffstat (limited to 'binutils/dwarf.c')
-rw-r--r-- | binutils/dwarf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/dwarf.c b/binutils/dwarf.c index cf5c8e1..0da2c22 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -1961,7 +1961,7 @@ process_debug_info (struct dwarf_section *section, unsigned long cu_offset; int offset_size; int initial_length_size; - unsigned char signature[8]; + unsigned char signature[8] = { 0 }; unsigned long type_offset = 0; hdrptr = start; |