dbghelp: Protect dwarf parsing against NULL function names.

oldstable
Eric Pouech 2008-05-18 09:43:39 +02:00 committed by Alexandre Julliard
parent 480297336b
commit fd20b1be8a
1 changed files with 5 additions and 1 deletions

View File

@ -1571,7 +1571,11 @@ static struct symt* dwarf2_parse_subprogram(dwarf2_parse_context_t* ctx,
TRACE("%s, for %s\n", dwarf2_debug_ctx(ctx), dwarf2_debug_di(di));
if (!dwarf2_find_attribute(ctx, di, DW_AT_name, &name)) name.u.string = NULL;
if (!dwarf2_find_attribute(ctx, di, DW_AT_name, &name))
{
WARN("No name for function... dropping function\n");
return NULL;
}
/* if it's an abstract representation of an inline function, there should be
* a concrete object that we'll handle
*/