From: Hans-Peter Nilsson Date: Tue, 18 Jul 2017 10:14:38 +0000 (+0200) Subject: * dwarf.c (display_debug_names): Initialize hash_prev. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0a79bef4f206d89214c48454a4302d6b6f8f68c0;p=binutils-gdb.git * dwarf.c (display_debug_names): Initialize hash_prev. gcc-4.3.0 warns that it may be used uninitialized. It takes a look and a half at the code to understand that it's false. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f1400dcbb7b..d36573665d8 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2017-07-18 Hans-Peter Nilsson + + * dwarf.c (display_debug_names): Initialize hash_prev. + 2017-07-17 Nick Clifton PR 21433 diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 5f8922eb8aa..f6fa157fed4 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;