From: Cary Coutant Date: Wed, 21 Jan 2015 23:43:52 +0000 (-0800) Subject: Silence "may be uninitialized" warnings. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc0d0b62cbd4ec1785967cc9ce9f834aa3ea1a4b;p=thirdparty%2Fbinutils-gdb.git Silence "may be uninitialized" warnings. 2015-01-21 Cary Coutant binutils/ * dwarf.c (display_debug_lines_raw): Silence "may be uninitialized" warnings. --- diff --git a/binutils/dwarf.c b/binutils/dwarf.c index abbb18ae25b..ec04663ac7b 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -3344,7 +3344,9 @@ display_debug_lines_raw (struct dwarf_section *section, Since the section is a fragment it does not have the details needed to fill out a LineInfo structure, so instead we use the details from the last full debug_line section that we processed. */ + start_of_line_program = data; end_of_sequence = end; + end_of_logicals = end; standard_opcodes = NULL; linfo = saved_linfo; /* PR 17531: file: 0522b371. */