From f35a17b5424e3d92d168c2a30d85940294c22d9a Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Tue, 25 Dec 2012 08:03:33 +0000 Subject: gdb/ * ada-lang.c (is_known_support_routine): New variable fullname. Use access call to verify the symtab_to_fullname result. * breakpoint.c (print_breakpoint_location, update_static_tracepoint): Remove NULL check of symtab_to_fullname result. * cli/cli-cmds.c (edit_command): Likewise. * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file) (mi_cmd_file_list_exec_source_files): Likewise. * python/py-symtab.c (stpy_fullname): Likewise. * source.c (symtab_to_fullname): Update function comment. Rename variable r to fd, move it to inner block. Always provide non-NULL result. (print_source_lines_base): Remove NULL check of symtab_to_fullname result. * stack.c (print_frame): Likewise. * symtab.c (iterate_over_some_symtabs, find_line_symtab, sources_info): Likewise. * tracepoint.c (print_one_static_tracepoint_marker): Likewise. gdb/doc/ * gdb.texinfo (GDB/MI Data Manipulation) (fullname): Make it always present. (GDB/MI File Commands) (-file-list-exec-source-files): Make the fullname output always present. gdb/testsuite/ * gdb.mi/mi-fullname-deleted.exp: New file. --- gdb/python/py-symtab.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'gdb/python') diff --git a/gdb/python/py-symtab.c b/gdb/python/py-symtab.c index d3e95db..deb7330 100644 --- a/gdb/python/py-symtab.c +++ b/gdb/python/py-symtab.c @@ -132,11 +132,8 @@ stpy_fullname (PyObject *self, PyObject *args) STPY_REQUIRE_VALID (self, symtab); fullname = symtab_to_fullname (symtab); - if (fullname) - return PyString_Decode (fullname, strlen (fullname), - host_charset (), NULL); - Py_RETURN_NONE; + return PyString_Decode (fullname, strlen (fullname), host_charset (), NULL); } /* Implementation of gdb.Symtab.is_valid (self) -> Boolean. -- cgit v1.1