aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2010-09-22 20:00:53 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2010-09-22 20:00:53 +0000
commitd31d2fc374b0523049655a0038cbdf1b43827edf (patch)
tree79ce4936223decea6d217e46548131755d639b3d
parent7f6130ff859e3676d0d27a3db5a42c0233dd93ec (diff)
downloadgdb-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.
-rw-r--r--gdb/ChangeLog13
-rw-r--r--gdb/objfiles.c9
-rw-r--r--gdb/objfiles.h4
-rw-r--r--gdb/python/py-auto-load.c2
-rw-r--r--gdb/python/py-objfile.c2
-rw-r--r--gdb/python/py-progspace.c2
6 files changed, 18 insertions, 14 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 8505e8b..9f959c1 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,18 @@
2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
+ 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.
+
+2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
+
* main.c: Include objfiles.h.
(captured_main): New variable objfile. Call
load_auto_scripts_for_objfile for ALL_OBJFILES.
diff --git a/gdb/objfiles.c b/gdb/objfiles.c
index 7d5186f..0768276 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)
diff --git a/gdb/objfiles.h b/gdb/objfiles.h
index ec4870b..b3e2e26 100644
--- a/gdb/objfiles.h
+++ b/gdb/objfiles.h
@@ -188,8 +188,8 @@ struct objfile
struct objfile *next;
- /* The object file's name, tilde-expanded and absolute.
- Malloc'd; free it if you free this struct. */
+ /* The object file's name, tilde-expanded and absolute. Malloc'd; free it
+ if you free this struct. This pointer is never NULL. */
char *name;
diff --git a/gdb/python/py-auto-load.c b/gdb/python/py-auto-load.c
index 044d968..538e06d 100644
--- a/gdb/python/py-auto-load.c
+++ b/gdb/python/py-auto-load.c
@@ -395,8 +395,6 @@ auto_load_new_objfile (struct objfile *objfile)
clear_section_scripts ();
return;
}
- if (!objfile->name)
- return;
load_auto_scripts_for_objfile (objfile);
}
diff --git a/gdb/python/py-objfile.c b/gdb/python/py-objfile.c
index 1aa6a4d..1473503 100644
--- a/gdb/python/py-objfile.c
+++ b/gdb/python/py-objfile.c
@@ -46,7 +46,7 @@ objfpy_get_filename (PyObject *self, void *closure)
{
objfile_object *obj = (objfile_object *) self;
- if (obj->objfile && obj->objfile->name)
+ if (obj->objfile)
return PyString_Decode (obj->objfile->name, strlen (obj->objfile->name),
host_charset (), NULL);
Py_RETURN_NONE;
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);
}