diff options
Diffstat (limited to 'gdb/varobj.c')
-rw-r--r-- | gdb/varobj.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/gdb/varobj.c b/gdb/varobj.c index 4a94988..48d4cfb 100644 --- a/gdb/varobj.c +++ b/gdb/varobj.c @@ -899,16 +899,7 @@ update_dynamic_varobj_children (struct varobj *var, if (!PyArg_ParseTuple (item, "sO", &name, &py_v)) error (_("Invalid item from the child list")); - if (PyObject_TypeCheck (py_v, &value_object_type)) - { - /* If we just call convert_value_from_python for this type, - we won't know who owns the result. For this one case we - need to copy the resulting value. */ - v = value_object_to_value (py_v); - v = value_copy (v); - } - else - v = convert_value_from_python (py_v); + v = convert_value_from_python (py_v); /* TODO: This assume the name of the i-th child never changes. */ |