dbghelp: Remove a dead assignment (Cppcheck).

This commit is contained in:
Bruno Jesus 2014-11-19 23:36:14 -02:00 committed by Alexandre Julliard
parent c257e8adf6
commit a5c3f38773
1 changed files with 1 additions and 1 deletions

View File

@ -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,