diff options
author | Tom Tromey <tom@tromey.com> | 2016-11-07 16:08:36 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-01-10 19:13:42 -0700 |
commit | bf7da5b06ffbbaa40c8a2900727a791265f897ea (patch) | |
tree | 30a8e22862d3c923daa87fe3ff167c2019604e82 /gdb | |
parent | 2d38bcedc2f91692857d257e106dafc9269d8f1a (diff) | |
download | gdb-bf7da5b06ffbbaa40c8a2900727a791265f897ea.zip gdb-bf7da5b06ffbbaa40c8a2900727a791265f897ea.tar.gz gdb-bf7da5b06ffbbaa40c8a2900727a791265f897ea.tar.bz2 |
Use gdbpy_enter in py-progspace.c
Change py-progspace.c to use gdbpy_enter.
2017-01-10 Tom Tromey <tom@tromey.com>
* python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/python/py-progspace.c | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9062025..ddc6578 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2017-01-10 Tom Tromey <tom@tromey.com> + * python/py-progspace.c (py_free_pspace): Use gdbpy_enter. + +2017-01-10 Tom Tromey <tom@tromey.com> + * python/py-objfile.c (py_free_objfile): Use gdbpy_enter. 2017-01-10 Tom Tromey <tom@tromey.com> diff --git a/gdb/python/py-progspace.c b/gdb/python/py-progspace.c index a9ea82b..b0d9458 100644 --- a/gdb/python/py-progspace.c +++ b/gdb/python/py-progspace.c @@ -323,7 +323,6 @@ pspy_set_type_printers (PyObject *o, PyObject *value, void *ignore) static void py_free_pspace (struct program_space *pspace, void *datum) { - struct cleanup *cleanup; pspace_object *object = (pspace_object *) datum; /* This is a fiction, but we're in a nasty spot: The pspace is in the process of being deleted, we can't rely on anything in it. Plus @@ -336,10 +335,9 @@ py_free_pspace (struct program_space *pspace, void *datum) being deleted. */ struct gdbarch *arch = target_gdbarch (); - cleanup = ensure_python_env (arch, current_language); + gdbpy_enter enter_py (arch, current_language); object->pspace = NULL; Py_DECREF ((PyObject *) object); - do_cleanups (cleanup); } /* Return a borrowed reference to the Python object of type Pspace |