dbghelp: Return proper null value when lookup_type fails.
This commit is contained in:
parent
1980545055
commit
96a38c93d5
|
@ -942,21 +942,23 @@ static struct symt* dwarf2_lookup_type(dwarf2_parse_context_t* ctx,
|
||||||
const dwarf2_debug_info_t* di)
|
const dwarf2_debug_info_t* di)
|
||||||
{
|
{
|
||||||
struct attribute attr;
|
struct attribute attr;
|
||||||
|
|
||||||
if (dwarf2_find_attribute(ctx, di, DW_AT_type, &attr))
|
|
||||||
{
|
|
||||||
dwarf2_debug_info_t* type;
|
dwarf2_debug_info_t* type;
|
||||||
|
|
||||||
type = sparse_array_find(&ctx->debug_info_table, attr.u.uvalue);
|
if (!dwarf2_find_attribute(ctx, di, DW_AT_type, &attr))
|
||||||
if (!type) FIXME("Unable to find back reference to type %lx\n", attr.u.uvalue);
|
return NULL;
|
||||||
|
if (!(type = sparse_array_find(&ctx->debug_info_table, attr.u.uvalue)))
|
||||||
|
{
|
||||||
|
FIXME("Unable to find back reference to type %lx\n", attr.u.uvalue);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
if (!type->symt)
|
if (!type->symt)
|
||||||
{
|
{
|
||||||
/* load the debug info entity */
|
/* load the debug info entity */
|
||||||
dwarf2_load_one_entry(ctx, type);
|
dwarf2_load_one_entry(ctx, type);
|
||||||
|
if (!type->symt)
|
||||||
|
FIXME("Unable to load forward reference for tag %lx\n", type->abbrev->tag);
|
||||||
}
|
}
|
||||||
return type->symt;
|
return type->symt;
|
||||||
}
|
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char* dwarf2_get_cpp_name(dwarf2_parse_context_t* ctx, dwarf2_debug_info_t* di, const char* name)
|
static const char* dwarf2_get_cpp_name(dwarf2_parse_context_t* ctx, dwarf2_debug_info_t* di, const char* name)
|
||||||
|
|
Loading…
Reference in New Issue