[binutils-gdb] gdb/varobj.c: Fix leak
Pedro Alves
palves@sourceware.org
Tue Jan 31 23:37:00 GMT 2017
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=b47413b47e103677fedb7cd1301c62fee01ac4ba
commit b47413b47e103677fedb7cd1301c62fee01ac4ba
Author: Pedro Alves <palves@redhat.com>
Date: Tue Jan 31 17:56:36 2017 +0000
gdb/varobj.c: Fix leak
Whoops, this function returns a std::string.
gdb/ChangeLog:
2017-01-31 Pedro Alves <palves@redhat.com>
* varobj.c (varobj_value_get_print_value): Remove xstrdup call.
Diff:
---
gdb/ChangeLog | 4 ++++
gdb/varobj.c | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 3e86d55..5e822f8 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
2017-01-31 Pedro Alves <palves@redhat.com>
+ * varobj.c (varobj_value_get_print_value): Remove xstrdup call.
+
+2017-01-31 Pedro Alves <palves@redhat.com>
+
* common/scoped_restore.h
(scoped_restore_tmpl::scoped_restore_tmpl): Template on T2, and
change the value's parameter type to T2.
diff --git a/gdb/varobj.c b/gdb/varobj.c
index 30dfb86..bcca6c6 100644
--- a/gdb/varobj.c
+++ b/gdb/varobj.c
@@ -2432,7 +2432,7 @@ varobj_value_get_print_value (struct value *value,
if (dynamic_varobj_has_child_method (var))
{
do_cleanups (old_chain);
- return xstrdup ("{...}");
+ return "{...}";
}
if (PyObject_HasAttr (value_formatter, gdbpy_to_string_cst))
More information about the Gdb-cvs
mailing list