diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-10-13 18:43:10 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-10-13 18:43:10 (GMT) |
commit | 7800159c1dd6538f0ee9d026cf3f121a488dd647 (patch) | |
tree | 546038a3e606b9bdae301b6e28d3c2d7dfe0d15b | |
parent | 37e5f1e071bd9eed59934f2ff242699035232f30 (diff) |
Loaded debug information with care.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@592 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/analysis/binary.c | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,10 @@ 15-10-13 Cyrille Bagard <nocbos@gmail.com> + * src/analysis/binary.c: + Load debug information with care. + +15-10-13 Cyrille Bagard <nocbos@gmail.com> + * src/format/elf/elf.c: Do not load ELF files as DWARF information. diff --git a/src/analysis/binary.c b/src/analysis/binary.c index f74f613..ae8054b 100644 --- a/src/analysis/binary.c +++ b/src/analysis/binary.c @@ -329,8 +329,7 @@ GLoadedBinary *g_loaded_binary_new(GBinContent *content) /* Informations de débogage associées */ - if (!g_loaded_binary_attach_debug_info(result, content)) - goto lbf_error; + g_loaded_binary_attach_debug_info(result, content); /* Architecture visée */ |