From ac0b195c018851569c96409a9d13f203f0592535 Mon Sep 17 00:00:00 2001 From: Ken Werner Date: Tue, 27 Jul 2010 07:57:49 +0000 Subject: [PATCH] * valops.c (dwarf2_read_index): Initialize the types_list and types_list_elements variables. --- gdb/ChangeLog | 5 +++++ gdb/dwarf2read.c | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 718e7d5..d1fedab 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2010-07-27 Ken Werner + + * valops.c (dwarf2_read_index): Initialize the types_list and + types_list_elements variables. + 2010-07-26 Tom Tromey * dwarf2loc.c (locexpr_describe_location_piece): Also recognize diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index fb62b77..590e695 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -1835,8 +1835,10 @@ dwarf2_read_index (struct objfile *objfile) char *addr; struct mapped_index *map; offset_type *metadata; - const gdb_byte *cu_list, *types_list; - offset_type version, cu_list_elements, types_list_elements; + const gdb_byte *cu_list; + const gdb_byte *types_list = NULL; + offset_type version, cu_list_elements; + offset_type types_list_elements = 0; int i; if (dwarf2_per_objfile->gdb_index.asection == NULL -- 2.7.4