=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: winedbg: Remove superfluous break instruction.

Alexandre Julliard julliard at winehq.org
Wed Jan 18 14:03:38 CST 2012


Module: wine
Branch: master
Commit: 2c568309e3cc026f1924ff4b09268e4c9d4ae0d4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2c568309e3cc026f1924ff4b09268e4c9d4ae0d4

Author: André Hentschel <nerv at dawncrow.de>
Date:   Tue Jan 17 22:22:09 2012 +0100

winedbg: Remove superfluous break instruction.

---

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

diff --git a/programs/winedbg/crashdlg.c b/programs/winedbg/crashdlg.c
index 27de37d..1f2542e 100644
--- a/programs/winedbg/crashdlg.c
+++ b/programs/winedbg/crashdlg.c
@@ -134,7 +134,6 @@ static void load_crash_log( HANDLE file )
     while (ReadFile( file, crash_log + pos, size - pos - 1, &len, NULL ) && len)
     {
         pos += len;
-        break;
         if (pos == size - 1) crash_log = HeapReAlloc( GetProcessHeap(), 0, crash_log, size *= 2 );
     }
     crash_log[pos] = 0;




More information about the wine-cvs mailing list