summaryrefslogtreecommitdiff
path: root/gdb/memory-map.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2007-10-25 21:43:42 +0000
committerPedro Alves <palves@redhat.com>2007-10-25 21:43:42 +0000
commitf6071bfaa3b8a4489a68d5375e3a959d29855ede (patch)
treea2fb34d294841a59a0a9c17a89c50bf55098675f /gdb/memory-map.c
parent7e2dbecf8fe00b3e0a8587e2859aefb740c6e3ea (diff)
* memory-map.c (parse_memory_map): Don't use an empty struct
initializer.
Diffstat (limited to 'gdb/memory-map.c')
-rw-r--r--gdb/memory-map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/memory-map.c b/gdb/memory-map.c
index d8283aceb2..a13fbeb4a8 100644
--- a/gdb/memory-map.c
+++ b/gdb/memory-map.c
@@ -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"),