summaryrefslogtreecommitdiff
path: root/gdb/solib-pa64.c
diff options
context:
space:
mode:
authorDave Anglin <dave.anglin@nrc.ca>2008-08-06 20:17:20 +0000
committerDave Anglin <dave.anglin@nrc.ca>2008-08-06 20:17:20 +0000
commitda964e84244d09b2f10fd3c0c908d74dd922737d (patch)
tree70fda61f843043e7e710e2f9c87c34a0b51796d2 /gdb/solib-pa64.c
parent23a1a6958130cfb51e9e1571c212b329b320bf20 (diff)
downloadgdb-da964e84244d09b2f10fd3c0c908d74dd922737d.tar.gz
* solib-pa64.c (read_dld_descriptor): Return zero if load map is not
setup.
Diffstat (limited to 'gdb/solib-pa64.c')
-rw-r--r--gdb/solib-pa64.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/gdb/solib-pa64.c b/gdb/solib-pa64.c
index d5b718a2358..af04b4de818 100644
--- a/gdb/solib-pa64.c
+++ b/gdb/solib-pa64.c
@@ -125,8 +125,8 @@ pa64_target_read_memory (void *buffer, CORE_ADDR ptr, size_t bufsiz, int ident)
This must happen after dld starts running, so we can't do it in
read_dynamic_info. Record the fact that we have loaded the
- descriptor. If the library is archive bound, then return zero, else
- return nonzero. */
+ descriptor. If the library is archive bound or the load map
+ hasn't been setup, then return zero; else return nonzero. */
static int
read_dld_descriptor (void)
@@ -161,6 +161,9 @@ read_dld_descriptor (void)
error (_("Error while reading in load map pointer."));
}
+ if (!dld_cache.load_map)
+ return 0;
+
/* Read in the dld load module descriptor */
if (dlgetmodinfo (-1,
&dld_cache.dld_desc,