diff options
author | Tom Tromey <tromey@redhat.com> | 2013-02-06 17:05:22 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-02-06 17:05:22 +0000 |
commit | bc9abe4a9122ac5984bb05ecd895ddeec6c8a67c (patch) | |
tree | cefb8a18955dc4a14a856646c976e8ec4c420373 /gdb/python | |
parent | 7acbc3a0f60f6e5814c9c0f59bb8d8bf37b7099d (diff) | |
download | gdb-bc9abe4a9122ac5984bb05ecd895ddeec6c8a67c.zip gdb-bc9abe4a9122ac5984bb05ecd895ddeec6c8a67c.tar.gz gdb-bc9abe4a9122ac5984bb05ecd895ddeec6c8a67c.tar.bz2 |
* python/py-type.c (typy_strip_typedefs): Don't call check_typedef
outside of TRY_CATCH.
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-type.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-type.c b/gdb/python/py-type.c index 31b7776..051cff0 100644 --- a/gdb/python/py-type.c +++ b/gdb/python/py-type.c @@ -423,7 +423,7 @@ typy_strip_typedefs (PyObject *self, PyObject *args) } GDB_PY_HANDLE_EXCEPTION (except); - return type_to_type_object (check_typedef (type)); + return type_to_type_object (type); } /* Strip typedefs and pointers/reference from a type. Then check that |