Added patch to output winedbg system information also to the terminal, not only to dialog.

This commit is contained in:
Sebastian Lackner
2015-05-30 01:27:24 +02:00
parent c632b99fb5
commit cf5c56ef11
5 changed files with 50 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
From 2fde182ba17d4ff0672f94038cb59ad1d4839867 Mon Sep 17 00:00:00 2001
From: Sebastian Lackner <sebastian@fds-team.de>
Date: Sat, 30 May 2015 01:25:47 +0200
Subject: winedbg: Also output system information to the terminal, not only to
dialog.
---
programs/winedbg/tgt_active.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/winedbg/tgt_active.c b/programs/winedbg/tgt_active.c
index 8cfce32..989e433 100644
--- a/programs/winedbg/tgt_active.c
+++ b/programs/winedbg/tgt_active.c
@@ -836,10 +836,10 @@ enum dbg_start dbg_active_auto(int argc, char* argv[])
dbg_interactiveP = TRUE;
parser_handle(input);
+ output_system_info();
if (output != INVALID_HANDLE_VALUE)
{
- output_system_info();
SetEvent( event );
WaitForSingleObject( thread, INFINITE );
CloseHandle( output );
--
2.4.2

View File

@@ -0,0 +1 @@
Fixes: Also output winedbg system information to the terminal, not only to dialog