mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-26 11:33:45 +08:00
2002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
* blockframe.c (get_pc_function_start): return 0 if the minimal symbol found is not inside a section.
This commit is contained in:
parent
ba94744e3b
commit
28a93f5a7a
@ -1,3 +1,8 @@
|
||||
2002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
|
||||
|
||||
* blockframe.c (get_pc_function_start): return 0 if the minimal symbol
|
||||
found is not inside a section.
|
||||
|
||||
2002-07-15 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* aix-thread.c (ptrace_check): Use safe_strerror() instead of
|
||||
|
@ -632,6 +632,8 @@ get_pc_function_start (CORE_ADDR pc)
|
||||
else if ((msymbol = lookup_minimal_symbol_by_pc (pc)) != NULL)
|
||||
{
|
||||
fstart = SYMBOL_VALUE_ADDRESS (msymbol);
|
||||
if (!find_pc_section (fstart))
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user