winedbg: Fix 'winedbg --auto' so it does just one backtrace.

Francois Gouget fgouget at codeweavers.com
Mon Jun 2 05:25:28 CDT 2008


---

'winedbg --auto' already prints a backtrace before the modules list. So 
there is no need to print another one after everything else.

 programs/winedbg/tgt_active.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/programs/winedbg/tgt_active.c b/programs/winedbg/tgt_active.c
index d334d17..8f8ce56 100644
--- a/programs/winedbg/tgt_active.c
+++ b/programs/winedbg/tgt_active.c
@@ -893,7 +893,7 @@ enum dbg_start dbg_active_auto(int argc, char* argv[])
         if (ds != start_ok) return ds;
         hFile = parser_generate_command_file("echo Modules:", "info share",
                                              "echo Threads:", "info threads",
-                                             "backtrace", "detach", NULL);
+                                             "detach", NULL);
     }
     else if (!strcmp(argv[0], "--minidump"))
     {
-- 
1.5.5.1



More information about the wine-patches mailing list