diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-09-22 20:00:53 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-09-22 20:00:53 +0000 |
commit | d31d2fc374b0523049655a0038cbdf1b43827edf (patch) | |
tree | 79ce4936223decea6d217e46548131755d639b3d /gdb/python/py-progspace.c | |
parent | 7f6130ff859e3676d0d27a3db5a42c0233dd93ec (diff) | |
download | gdb-d31d2fc374b0523049655a0038cbdf1b43827edf.zip gdb-d31d2fc374b0523049655a0038cbdf1b43827edf.tar.gz gdb-d31d2fc374b0523049655a0038cbdf1b43827edf.tar.bz2 |
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/python/py-progspace.c')
-rw-r--r-- | gdb/python/py-progspace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-progspace.c b/gdb/python/py-progspace.c index 8724532..2c8a677 100644 --- a/gdb/python/py-progspace.c +++ b/gdb/python/py-progspace.c @@ -52,7 +52,7 @@ pspy_get_filename (PyObject *self, void *closure) { struct objfile *objfile = obj->pspace->symfile_object_file; - if (objfile && objfile->name) + if (objfile) return PyString_Decode (objfile->name, strlen (objfile->name), host_charset (), NULL); } |