dbghelp: Remove a dead assignment (Cppcheck)

Bruno Jesus 00cpxxx at gmail.com
Wed Nov 19 19:36:14 CST 2014


-------------- next part --------------
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,


More information about the wine-patches mailing list