Commit e374bcff authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winedbg: We no longer need to force for ELF modules in minidumps as we do it automatically now.

parent 87155d65
...@@ -44,7 +44,6 @@ void minidump_write(const char* file, const EXCEPTION_RECORD* rec) ...@@ -44,7 +44,6 @@ void minidump_write(const char* file, const EXCEPTION_RECORD* rec)
HANDLE hFile; HANDLE hFile;
MINIDUMP_EXCEPTION_INFORMATION mei; MINIDUMP_EXCEPTION_INFORMATION mei;
EXCEPTION_POINTERS ep; EXCEPTION_POINTERS ep;
DWORD wine_opt;
hFile = CreateFile(file, GENERIC_READ|GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, hFile = CreateFile(file, GENERIC_READ|GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
FILE_ATTRIBUTE_NORMAL, NULL); FILE_ATTRIBUTE_NORMAL, NULL);
...@@ -59,14 +58,9 @@ void minidump_write(const char* file, const EXCEPTION_RECORD* rec) ...@@ -59,14 +58,9 @@ void minidump_write(const char* file, const EXCEPTION_RECORD* rec)
ep.ContextRecord = &dbg_context; ep.ContextRecord = &dbg_context;
mei.ClientPointers = FALSE; mei.ClientPointers = FALSE;
} }
/* this is a wine specific options to return also ELF modules in the
* dumping
*/
SymSetOptions((wine_opt = SymGetOptions()) | 0x40000000);
MiniDumpWriteDump(dbg_curr_process->handle, dbg_curr_process->pid, MiniDumpWriteDump(dbg_curr_process->handle, dbg_curr_process->pid,
hFile, MiniDumpNormal/*|MiniDumpWithDataSegs*/, hFile, MiniDumpNormal/*|MiniDumpWithDataSegs*/,
rec ? &mei : NULL, NULL, NULL); rec ? &mei : NULL, NULL, NULL);
SymSetOptions(wine_opt);
CloseHandle(hFile); CloseHandle(hFile);
} }
......
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