summaryrefslogtreecommitdiff
path: root/addr2line.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-26 04:39:23 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-26 04:39:23 +0000
commit39e7b2fb9495924e7f519a1e4f82d89f90ae78e4 (patch)
tree6327de23ea3985cb33c751d30623123b1ab65100 /addr2line.c
parent086301ac73c34bc2231f98b67d56b50c65480cc1 (diff)
* addr2line.c: apply a patch from shinichiro.h.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29941 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'addr2line.c')
-rw-r--r--addr2line.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/addr2line.c b/addr2line.c
index 0ab55ecae8..213196faa5 100644
--- a/addr2line.c
+++ b/addr2line.c
@@ -51,11 +51,13 @@
#define DW_LNE_define_file 0x03
#define DW_LNE_set_discriminator 0x04 /* DWARF4 */
+#ifndef ElfW
# if SIZEOF_VOIDP == 8
# define ElfW(x) Elf64##_##x
# else
# define ElfW(x) Elf32##_##x
# endif
+#endif
typedef struct {
const char *dirname;
@@ -210,7 +212,7 @@ parse_debug_line_cu(int num_traces, void **traces,
unsigned int file = 1;
unsigned int line = 1;
unsigned int column = 0;
- int is_stmt = default_is_stmt;
+ int is_stmt;
int basic_block = 0;
int end_sequence = 0;
int prologue_end = 0;
@@ -239,7 +241,7 @@ parse_debug_line_cu(int num_traces, void **traces,
minimum_instruction_length = *(unsigned char *)p;
p++;
- default_is_stmt = *(unsigned char *)p;
+ is_stmt = default_is_stmt = *(unsigned char *)p;
p++;
line_base = *(char *)p;
@@ -489,10 +491,17 @@ rb_dump_backtrace_with_lines(int num_traces, void **trace, char **syms)
binary_filename[len] = '\0';
fd = open(binary_filename, O_RDONLY);
+ if (fd < 0) {
+ continue;
+ }
filesize = lseek(fd, 0, SEEK_END);
lseek(fd, 0, SEEK_SET);
/* async-signal unsafe */
file = (char *)mmap(NULL, filesize, PROT_READ, MAP_SHARED, fd, 0);
+ if (file == MAP_FAILED) {
+ perror("mmap");
+ continue;
+ }
lines[i].fd = fd;
lines[i].mapped = file;