This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH 2/3] Fix leak in solib-target.c:library_list_start_library
- From: Pedro Alves <palves at redhat dot com>
- To: gdb-patches at sourceware dot org
- Date: Fri, 14 Dec 2018 19:12:41 +0000
- Subject: [PATCH 2/3] Fix leak in solib-target.c:library_list_start_library
- References: <20181214191242.21560-1-palves@redhat.com>
lm_info_target::name is nowadays std::string, so we're leaking the
result of xstrdup.
gdb/ChangeLog:
yyyy-mm-dd Pedro Alves <palves@redhat.com>
* solib-target.c (library_list_start_library): Don't xstrdup name.
---
gdb/solib-target.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gdb/solib-target.c b/gdb/solib-target.c
index 3c9872c116..6a395ad378 100644
--- a/gdb/solib-target.c
+++ b/gdb/solib-target.c
@@ -124,10 +124,9 @@ library_list_start_library (struct gdb_xml_parser *parser,
{
VEC(lm_info_target_p) **list = (VEC(lm_info_target_p) **) user_data;
lm_info_target *item = new lm_info_target;
- const char *name
+ item->name
= (const char *) xml_find_attribute (attributes, "name")->value.get ();
- item->name = xstrdup (name);
VEC_safe_push (lm_info_target_p, *list, item);
}
--
2.14.4