gdb/ 2007-10-25 Pedro Alves * memory-map.c (parse_memory_map): Don't use an empty struct initializer. --- gdb/memory-map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: gdb-6.7.0.20071025/gdb/memory-map.c =================================================================== --- gdb-6.7.0.20071025.orig/gdb/memory-map.c 2007-08-23 19:08:36.000000000 +0100 +++ gdb-6.7.0.20071025/gdb/memory-map.c 2007-10-25 15:01:43.006009000 +0100 @@ -180,7 +180,7 @@ parse_memory_map (const char *memory_map struct gdb_xml_parser *parser; VEC(mem_region_s) *result = NULL; struct cleanup *before_deleting_result, *back_to; - struct memory_map_parsing_data data = {}; + struct memory_map_parsing_data data = { NULL }; back_to = make_cleanup (null_cleanup, NULL); parser = gdb_xml_create_parser_and_cleanup (_("target memory map"),