Index: gdb/glibc-tdep.c |
diff --git a/gdb/glibc-tdep.c b/gdb/glibc-tdep.c |
index 754e32f124c7dd8f4e6617b448bafe192d1a2b5a..64938b52129708ff18c86332496f19218037630b 100644 |
--- a/gdb/glibc-tdep.c |
+++ b/gdb/glibc-tdep.c |
@@ -1,6 +1,6 @@ |
/* Target-dependent code for the GNU C Library (glibc). |
- Copyright (C) 2002-2003, 2007-2012 Free Software Foundation, Inc. |
+ Copyright (C) 2002-2013 Free Software Foundation, Inc. |
This file is part of GDB. |
@@ -53,19 +53,18 @@ glibc_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc) |
of GNU/Linux will provide a portable, efficient interface for |
debugging programs that use shared libraries. */ |
- struct objfile *objfile; |
- struct minimal_symbol *resolver |
- = lookup_minimal_symbol_and_objfile ("_dl_runtime_resolve", &objfile); |
+ struct bound_minimal_symbol resolver |
+ = lookup_minimal_symbol_and_objfile ("_dl_runtime_resolve"); |
- if (resolver) |
+ if (resolver.minsym) |
{ |
/* The dynamic linker began using this name in early 2005. */ |
struct minimal_symbol *fixup |
- = lookup_minimal_symbol ("_dl_fixup", NULL, objfile); |
+ = lookup_minimal_symbol ("_dl_fixup", NULL, resolver.objfile); |
/* This is the name used in older versions. */ |
if (! fixup) |
- fixup = lookup_minimal_symbol ("fixup", NULL, objfile); |
+ fixup = lookup_minimal_symbol ("fixup", NULL, resolver.objfile); |
if (fixup && SYMBOL_VALUE_ADDRESS (fixup) == pc) |
return frame_unwind_caller_pc (get_current_frame ()); |