From: Michael Snyder Date: Tue, 31 Jul 2007 21:49:21 +0000 (+0000) Subject: 2007-07-31 Michael Snyder X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c7b1adc9a01611d4bdc9a8e4c059189857c642a1;p=binutils-gdb.git 2007-07-31 Michael Snyder * exec.c (xfer_memory): Remove redundant condition from 'if'. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 54d610ef27f..4acf4e7c380 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2007-07-31 Michael Snyder + * exec.c (xfer_memory): Remove redundant condition from 'if'. + * symfile.c (reread_separate_symbols): Free xmalloced memory. * printcmd.c (build_address_symbolic): Remove dead code and dead diff --git a/gdb/exec.c b/gdb/exec.c index 4e68d1cf443..9bf827baed9 100644 --- a/gdb/exec.c +++ b/gdb/exec.c @@ -479,7 +479,7 @@ xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len, int write, for (p = target->to_sections; p < target->to_sections_end; p++) { - if (overlay_debugging && section && p->the_bfd_section && + if (overlay_debugging && section && strcmp (section->name, p->the_bfd_section->name) != 0) continue; /* not the section we need */ if (memaddr >= p->addr)