diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-12-24 19:42:16 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-12-24 19:42:16 +0000 |
commit | 4e04028d9573bd2a145f2bff5d4b3de0b75c83f6 (patch) | |
tree | f32d3f2286ec7f36a9cc6cf18a10b17596eba5e1 /gdb/tui | |
parent | 858174054dbd9970d840c043aeb318f721fcf4fd (diff) | |
download | gdb-4e04028d9573bd2a145f2bff5d4b3de0b75c83f6.zip gdb-4e04028d9573bd2a145f2bff5d4b3de0b75c83f6.tar.gz gdb-4e04028d9573bd2a145f2bff5d4b3de0b75c83f6.tar.bz2 |
gdb/
Code cleanup.
* dwarf2read.c (fixup_go_packaging): Do not check symtab->FILENAME for
NULL.
* linespec.c (add_sal_to_sals): Likewise.
* psympriv.h (allocate_psymtab): Add ATTRIBUTE_NONNULL.
* stack.c (print_frame): Do not check symtab->FILENAME for NULL.
* symfile.h (allocate_symtab): Add ATTRIBUTE_NONNULL.
* symtab.h (struct symtab): Add comment it is never NULL for filename.
* tracepoint.c (set_traceframe_context): Do not check symtab->FILENAME
for NULL.
* tui/tui-source.c (tui_set_source_content): Likewise.
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-source.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/tui/tui-source.c b/gdb/tui/tui-source.c index 030653c..a0daac7 100644 --- a/gdb/tui/tui-source.c +++ b/gdb/tui/tui-source.c @@ -46,7 +46,7 @@ tui_set_source_content (struct symtab *s, { enum tui_status ret = TUI_FAILURE; - if (s != (struct symtab *) NULL && s->filename != (char *) NULL) + if (s != (struct symtab *) NULL) { FILE *stream; int i, desc, c, line_width, nlines; |