summaryrefslogtreecommitdiff
path: root/gdb/solib.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2010-05-05 19:37:44 +0000
committerMichael Snyder <msnyder@specifix.com>2010-05-05 19:37:44 +0000
commit58bd3cde7086a435b8bb7193ad7f8c8510be28c0 (patch)
tree435004b1404d509fb734e9876f74a5fb2d3a92f3 /gdb/solib.c
parent00eb3f8924b440d32d1f1d70645b93ba9c0f87b1 (diff)
downloadgdb-58bd3cde7086a435b8bb7193ad7f8c8510be28c0.tar.gz
2010-05-05 Michael Snyder <msnyder@vmware.com>
* solib.c (solib_find): Delete unused variable. (free_so_symbols): Delete unused variable. (info_sharedlibrary_command): Delete unused variable. (reload_shared_libraries_1): Delete unused variable. (_initialize_solib): Delete unused variable.
Diffstat (limited to 'gdb/solib.c')
-rw-r--r--gdb/solib.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/solib.c b/gdb/solib.c
index df8f3d33d6f..5340516e4fa 100644
--- a/gdb/solib.c
+++ b/gdb/solib.c
@@ -281,8 +281,6 @@ solib_find (char *in_pathname, int *fd)
found_file = open (temp_pathname, O_RDONLY | O_BINARY, 0);
if (found_file < 0)
{
- char *p;
-
xfree (temp_pathname);
/* If the search in gdb_sysroot still failed, try fully
@@ -548,8 +546,6 @@ solib_map_sections (struct so_list *so)
static void
free_so_symbols (struct so_list *so)
{
- char *bfd_filename = 0;
-
if (so->sections)
{
xfree (so->sections);
@@ -1000,7 +996,6 @@ static void
info_sharedlibrary_command (char *pattern, int from_tty)
{
struct so_list *so = NULL; /* link map state variable */
- int header_done = 0;
int so_missing_debug_info = 0;
int addr_width;
int nr_libs;
@@ -1318,7 +1313,6 @@ reload_shared_libraries_1 (int from_tty)
{
char *filename, *found_pathname = NULL;
bfd *abfd;
- int scratch_chan;
int was_loaded = so->symbols_loaded;
const int flags =
SYMFILE_DEFER_BP_RESET | (from_tty ? SYMFILE_VERBOSE : 0);
@@ -1454,8 +1448,6 @@ extern initialize_file_ftype _initialize_solib; /* -Wmissing-prototypes */
void
_initialize_solib (void)
{
- struct cmd_list_element *c;
-
solib_data = gdbarch_data_register_pre_init (solib_init);
add_com ("sharedlibrary", class_files, sharedlibrary_command,