summaryrefslogtreecommitdiff
path: root/libbacktrace
diff options
context:
space:
mode:
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>2013-11-18 16:30:44 +0000
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>2013-11-18 16:30:44 +0000
commitbcddbfd588212678cdc3de05ab7e6cde1c338a9d (patch)
tree5117c0329ff4beb33321858e4be35b3db8b20c54 /libbacktrace
parenteb9920549e9e77ad824810dd641735e78f8a27d8 (diff)
* elf.c (phdr_callback): Process info->dlpi_addr == 0 normally.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@204971 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libbacktrace')
-rw-r--r--libbacktrace/ChangeLog4
-rw-r--r--libbacktrace/elf.c8
2 files changed, 6 insertions, 6 deletions
diff --git a/libbacktrace/ChangeLog b/libbacktrace/ChangeLog
index 8d305a9e409b..b7169da61081 100644
--- a/libbacktrace/ChangeLog
+++ b/libbacktrace/ChangeLog
@@ -1,3 +1,7 @@
+2013-11-18 Jakub Jelinek <jakub@redhat.com>
+
+ * elf.c (phdr_callback): Process info->dlpi_addr == 0 normally.
+
2013-11-16 Ian Lance Taylor <iant@google.com>
* backtrace.h (backtrace_create_state): Correct comment about
diff --git a/libbacktrace/elf.c b/libbacktrace/elf.c
index c58b74e192f5..9a0fd70aed06 100644
--- a/libbacktrace/elf.c
+++ b/libbacktrace/elf.c
@@ -863,12 +863,8 @@ phdr_callback (struct dl_phdr_info *info, size_t size ATTRIBUTE_UNUSED,
fileline elf_fileline_fn;
int found_dwarf;
- /* There is not much we can do if we don't have the module name. If
- the base address is 0, this is probably the executable, which we
- already loaded. */
- if (info->dlpi_name == NULL
- || info->dlpi_name[0] == '\0'
- || info->dlpi_addr == 0)
+ /* There is not much we can do if we don't have the module name. */
+ if (info->dlpi_name == NULL || info->dlpi_name[0] == '\0')
return 0;
descriptor = backtrace_open (info->dlpi_name, pd->error_callback, pd->data,