mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-29 23:36:06 +08:00
* python/py-type.c (typy_strip_typedefs): Don't call check_typedef
outside of TRY_CATCH.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2013-02-06 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
|
* python/py-type.c (typy_strip_typedefs): Don't call check_typedef
|
||||||
|
outside of TRY_CATCH.
|
||||||
|
|
||||||
2013-02-06 Yao Qi <yao@codesourcery.com>
|
2013-02-06 Yao Qi <yao@codesourcery.com>
|
||||||
|
|
||||||
* mi/mi-interp.c: Include "tracepoint.h".
|
* mi/mi-interp.c: Include "tracepoint.h".
|
||||||
|
@ -423,7 +423,7 @@ typy_strip_typedefs (PyObject *self, PyObject *args)
|
|||||||
}
|
}
|
||||||
GDB_PY_HANDLE_EXCEPTION (except);
|
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
|
/* Strip typedefs and pointers/reference from a type. Then check that
|
||||||
|
Reference in New Issue
Block a user