Skip to content

Commit

Permalink
Fixing assert.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sasha Nicolas committed Aug 18, 2017
1 parent e7d8a09 commit 3ffe451
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion symtabAPI/src/Object-elf.C
Expand Up @@ -2495,7 +2495,8 @@ bool Object::fix_global_symbol_modules_static_dwarf()
Dwarf_Off cu_die_off = cu_off + cu_header_size;
Dwarf_Die cu_die, *cu_die_p;
cu_die_p = dwarf_offdie(dbg, cu_die_off, &cu_die);
assert(cu_die_p == NULL);
//assert(cu_die_p == NULL);
if(cu_die_p == NULL) continue;
if(dies_seen.count(cu_die_off) != 0) continue;

std::string modname;
Expand Down

0 comments on commit 3ffe451

Please sign in to comment.