summaryrefslogtreecommitdiff
path: root/gdb/solib-som.c
diff options
context:
space:
mode:
authorRandolph Chung <tausq@debian.org>2006-03-24 23:49:56 +0000
committerRandolph Chung <tausq@debian.org>2006-03-24 23:49:56 +0000
commit6cf45c244f774370f6211ede4a54a7bd59212ed4 (patch)
tree6e3219f1b620b0e09a9548a6e0323d20d8e7376d /gdb/solib-som.c
parent1a97c76ee0fc8202bc42e95fcd64c56a866a5344 (diff)
downloadgdb-6cf45c244f774370f6211ede4a54a7bd59212ed4.tar.gz
2006-03-24 Randolph Chung <tausq@debian.org>
* solib-som.c (link_map_start): Don't error out if there is not yet a link map.
Diffstat (limited to 'gdb/solib-som.c')
-rw-r--r--gdb/solib-som.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/solib-som.c b/gdb/solib-som.c
index 3d027ccf70c..52c7367c47b 100644
--- a/gdb/solib-som.c
+++ b/gdb/solib-som.c
@@ -520,7 +520,7 @@ link_map_start (void)
read_memory (addr, buf, 4);
addr = extract_unsigned_integer (buf, 4);
if (addr == 0)
- error (_("Debugging dynamic executables loaded via the hpux8 dld.sl is not supported."));
+ return 0;
read_memory (addr, buf, 4);
return extract_unsigned_integer (buf, 4);