diff options
author | Tom Tromey <tom@tromey.com> | 2023-12-22 11:43:26 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2024-03-14 08:57:00 -0600 |
commit | b0e7d28eae1fa1a91932e47d8cf5decf96c2bc59 (patch) | |
tree | 91e5771f2592527303d2fcfc38dc3a87cb738f07 /gdb/python/py-inferior.c | |
parent | 9a03f2185347bd8f20da9bf535bc68a8d0f18ce8 (diff) | |
download | gdb-b0e7d28eae1fa1a91932e47d8cf5decf96c2bc59.zip gdb-b0e7d28eae1fa1a91932e47d8cf5decf96c2bc59.tar.gz gdb-b0e7d28eae1fa1a91932e47d8cf5decf96c2bc59.tar.bz2 |
Remove 'if' from GDB_PY_HANDLE_EXCEPTION
This removes the embedded 'if' from GDB_PY_HANDLE_EXCEPTION and
GDB_PY_SET_HANDLE_EXCEPTION. I believe this 'if' was necessary with
the old gdb try/catch macros, but it no longer is: these should only
ever be called from a 'catch' block, where it's already known that an
exception was thrown.
Simon pointed out, though, that in a few spots, these were in facts
called outside of 'catch' blocks. This patch cleans up these spots.
I also found one spot where a redundant 'return nullptr' could be
removed.
Diffstat (limited to 'gdb/python/py-inferior.c')
-rw-r--r-- | gdb/python/py-inferior.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gdb/python/py-inferior.c b/gdb/python/py-inferior.c index caf6c1b..c25519c 100644 --- a/gdb/python/py-inferior.c +++ b/gdb/python/py-inferior.c @@ -586,7 +586,6 @@ static PyObject * infpy_write_memory (PyObject *self, PyObject *args, PyObject *kw) { inferior_object *inf = (inferior_object *) self; - struct gdb_exception except; Py_ssize_t buf_len; const gdb_byte *buffer; CORE_ADDR addr, length; @@ -625,11 +624,9 @@ infpy_write_memory (PyObject *self, PyObject *args, PyObject *kw) } catch (gdb_exception &ex) { - except = std::move (ex); + GDB_PY_HANDLE_EXCEPTION (ex); } - GDB_PY_HANDLE_EXCEPTION (except); - Py_RETURN_NONE; } @@ -645,7 +642,6 @@ static PyObject * infpy_search_memory (PyObject *self, PyObject *args, PyObject *kw) { inferior_object *inf = (inferior_object *) self; - struct gdb_exception except; CORE_ADDR start_addr, length; static const char *keywords[] = { "address", "length", "pattern", NULL }; PyObject *start_addr_obj, *length_obj; @@ -702,11 +698,9 @@ infpy_search_memory (PyObject *self, PyObject *args, PyObject *kw) } catch (gdb_exception &ex) { - except = std::move (ex); + GDB_PY_HANDLE_EXCEPTION (ex); } - GDB_PY_HANDLE_EXCEPTION (except); - if (found) return gdb_py_object_from_ulongest (found_addr).release (); else |