Module: wine Branch: master Commit: fd20b1be8a0d84c11f967cf020bfcc53681ffdb6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=fd20b1be8a0d84c11f967cf020...
Author: Eric Pouech eric.pouech@orange.fr Date: Sun May 18 09:43:39 2008 +0200
dbghelp: Protect dwarf parsing against NULL function names.
---
dlls/dbghelp/dwarf.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c index ec4c351..5f6458f 100644 --- a/dlls/dbghelp/dwarf.c +++ b/dlls/dbghelp/dwarf.c @@ -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 */