Commit a5c3f387 authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

dbghelp: Remove a dead assignment (Cppcheck).

parent c257e8ad
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment