summaryrefslogtreecommitdiff
path: root/gdb/objfiles.c
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2010-09-22 20:00:52 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2010-09-22 20:00:52 +0000
commitc408df2d80e5def5fc57fff7bc2dcf9e79f6d15a (patch)
treeaee1a8dbcd96cd30319452b07d7a97367c600ccf /gdb/objfiles.c
parent3c608a850b8c35416d1dfef6875af62adf62f076 (diff)
downloadgdb-c408df2d80e5def5fc57fff7bc2dcf9e79f6d15a.tar.gz
gdb/
Code cleanup. * objfiles.c (allocate_objfile) <objfile->name != NULL>: Remove. (free_objfile) <objfile->name != NULL>: Remove the conditional around xfree. * objfiles.h (struct objfile) <name>: New comment it is never NULL. * python/py-auto-load.c (auto_load_new_objfile) <!objfile->name>: Remove. * python/py-objfile.c (objfpy_get_filename) <obj->objfile->name> Remove the conditional. * python/py-progspace.c (pspy_get_filename) <objfile->name>: Likewise.
Diffstat (limited to 'gdb/objfiles.c')
-rw-r--r--gdb/objfiles.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/gdb/objfiles.c b/gdb/objfiles.c
index 7d5186f1788..076827619c8 100644
--- a/gdb/objfiles.c
+++ b/gdb/objfiles.c
@@ -214,10 +214,6 @@ allocate_objfile (bfd *abfd, int flags)
region. */
objfile->obfd = gdb_bfd_ref (abfd);
- if (objfile->name != NULL)
- {
- xfree (objfile->name);
- }
if (abfd != NULL)
{
/* Look up the gdbarch associated with the BFD. */
@@ -649,10 +645,7 @@ free_objfile (struct objfile *objfile)
/* The last thing we do is free the objfile struct itself. */
- if (objfile->name != NULL)
- {
- xfree (objfile->name);
- }
+ xfree (objfile->name);
if (objfile->global_psymbols.list)
xfree (objfile->global_psymbols.list);
if (objfile->static_psymbols.list)