* [commit][obvious] Remove unused value_object attribute `owned_by_gdb'.
@ 2009-03-30 3:52 Thiago Jung Bauermann
0 siblings, 0 replies; only message in thread
From: Thiago Jung Bauermann @ 2009-03-30 3:52 UTC (permalink / raw)
To: gdb-patches ml
Hi,
I just committed this patch.
--
[]'s
Thiago Jung Bauermann
IBM Linux Technology Center
Remove unused value_object attribute `owned_by_gdb'.
* python/python-value.c (value_object): Remove owned_by_gdb
attribute.
(valpy_dealloc): Remove reference to self->owned_by_gdb.
(valpy_new): Likewise.
(value_to_value_object): Likewise.
Index: src/gdb/python/python-value.c
===================================================================
--- src.orig/gdb/python/python-value.c 2009-03-29 18:17:43.000000000 -0300
+++ src/gdb/python/python-value.c 2009-03-29 18:17:51.000000000 -0300
@@ -58,7 +58,6 @@ struct value *values_in_python = NULL;
typedef struct {
PyObject_HEAD
struct value *value;
- int owned_by_gdb;
PyObject *address;
} value_object;
@@ -70,8 +69,7 @@ valpy_dealloc (PyObject *obj)
value_remove_from_list (&values_in_python, self->value);
- if (!self->owned_by_gdb)
- value_free (self->value);
+ value_free (self->value);
if (self->address)
/* Use braces to appease gcc warning. *sigh* */
@@ -112,7 +110,6 @@ valpy_new (PyTypeObject *subtype, PyObje
}
value_obj->value = value;
- value_obj->owned_by_gdb = 0;
value_obj->address = NULL;
release_value (value);
value_prepend_to_list (&values_in_python, value);
@@ -746,7 +743,6 @@ value_to_value_object (struct value *val
if (val_obj != NULL)
{
val_obj->value = val;
- val_obj->owned_by_gdb = 0;
val_obj->address = NULL;
release_value (val);
value_prepend_to_list (&values_in_python, val);
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-03-29 21:22 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-30 3:52 [commit][obvious] Remove unused value_object attribute `owned_by_gdb' Thiago Jung Bauermann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox