Module: wine Branch: master Commit: a5c3f38773aaf5333e2d2a1ad64d5c619075cdfd URL: http://source.winehq.org/git/wine.git/?a=commit;h=a5c3f38773aaf5333e2d2a1ad6...
Author: Bruno Jesus 00cpxxx@gmail.com Date: Wed Nov 19 23:36:14 2014 -0200
dbghelp: Remove a dead assignment (Cppcheck).
---
dlls/dbghelp/pe_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/dbghelp/pe_module.c b/dlls/dbghelp/pe_module.c index f43d971..b793edb 100644 --- a/dlls/dbghelp/pe_module.c +++ b/dlls/dbghelp/pe_module.c @@ -515,7 +515,7 @@ static BOOL pe_load_stabs(const struct process* pcs, struct module* module) static BOOL pe_load_dwarf(struct module* module) { struct image_file_map* fmap = &module->format_info[DFI_PE]->u.pe_info->fmap; - BOOL ret = FALSE; + BOOL ret;
ret = dwarf2_parse(module, module->module.BaseOfImage - fmap->u.pe.ntheader.OptionalHeader.ImageBase,