diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2009-07-07 19:36:09 +0000 |
---|---|---|
committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2009-07-07 19:36:09 +0000 |
commit | 570e2b1a04ef8ec53e236b0bdd2fae2c777e3268 (patch) | |
tree | f3f17e077c6302ab63d4787e7d52821095ca9f46 /gdb/python | |
parent | 8c902bb1fe198081e40e925140473001c1c9e486 (diff) | |
download | gdb-570e2b1a04ef8ec53e236b0bdd2fae2c777e3268.zip gdb-570e2b1a04ef8ec53e236b0bdd2fae2c777e3268.tar.gz gdb-570e2b1a04ef8ec53e236b0bdd2fae2c777e3268.tar.bz2 |
2009-07-07 Paul Pluzhnikov <ppluzhnikov@google.com>
* python/python-value.c (valpy_getitem): Don't return from TRY_CATCH.
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/python-value.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/gdb/python/python-value.c b/gdb/python/python-value.c index 5304caf..948ff06 100644 --- a/gdb/python/python-value.c +++ b/gdb/python/python-value.c @@ -267,8 +267,7 @@ valpy_getitem (PyObject *self, PyObject *key) { value_object *self_value = (value_object *) self; char *field = NULL; - struct value *idx = NULL; - struct value *res_val = NULL; /* Initialize to appease gcc warning. */ + struct value *res_val = NULL; volatile struct gdb_exception except; if (gdbpy_is_string (key)) @@ -290,12 +289,17 @@ valpy_getitem (PyObject *self, PyObject *key) value code throw an exception if the index has an invalid type. */ struct value *idx = convert_value_from_python (key); - if (idx == NULL) - return NULL; - - res_val = value_subscript (tmp, value_as_long (idx)); + if (idx != NULL) + res_val = value_subscript (tmp, value_as_long (idx)); } } + + if (res_val == NULL) + { + gdb_assert (field == NULL); + return NULL; + } + if (field) xfree (field); GDB_PY_HANDLE_EXCEPTION (except); |