diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/dwarf.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f1400dc..d365736 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2017-07-18 Hans-Peter Nilsson <hp@bitrange.com> + + * dwarf.c (display_debug_names): Initialize hash_prev. + 2017-07-17 Nick Clifton <nickc@redhat.com> PR 21433 diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 5f8922e..f6fa157 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -7816,7 +7816,7 @@ display_debug_names (struct dwarf_section *section, void *file) printf (_("Used %zu of %lu buckets.\n"), buckets_filled, (unsigned long) bucket_count); - uint32_t hash_prev; + uint32_t hash_prev = 0; size_t hash_clash_count = 0; size_t longest_clash = 0; size_t this_length = 0; |