* object.cc (Sized_relobj_file::map_to_kept_section): Initialize
kept_file.
+2018-07-10 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
+
+ * object.cc (Sized_relobj_file::map_to_kept_section): Initialize
+ kept_file.
+
2018-08-07 Cary Coutant <ccoutant@gmail.com>
PR ld/23486
// Since we're using this mapping for relocation processing,
// we don't want to match sections unless they have the same
// size.
- uint64_t kept_size;
+ uint64_t kept_size = 0;
if (kept_section->find_comdat_section(section_name, &kept_shndx,
&kept_size))
{
}
else
{
- uint64_t kept_size;
+ uint64_t kept_size = 0;
if (kept_section->find_single_comdat_section(&kept_shndx,
&kept_size)
&& sh_size == kept_size)