[RESEND] Fix elf_read_wine_loader_dbg_info() for the !__ELF__ case

Dmitry Timoshkov dmitry at baikal.ru
Sun May 23 08:32:26 CDT 2004


Hello,

this time with return value fixed as well.

Changelog:
    Dmitry Timoshkov <dmitry at codeweavers.com>
    Fix elf_read_wine_loader_dbg_info() for the !__ELF__ case.

--- cvs/hq/wine/dlls/dbghelp/elf_module.c	Wed May 19 11:47:44 2004
+++ wine/dlls/dbghelp/elf_module.c	Sun May 23 13:30:00 2004
@@ -928,9 +928,9 @@ BOOL	elf_synchronize_module_list(struct 
     return FALSE;
 }
 
-unsigned long elf_read_wine_loader_dbg_info(struct process* pcs)
+BOOL elf_read_wine_loader_dbg_info(struct process* pcs)
 {
-    return -1;
+    return FALSE;
 }
 
 struct module*  elf_load_module(struct process* pcs, const char* name)






More information about the wine-patches mailing list