Commit 2c568309 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winedbg: Remove superfluous break instruction.

parent ed417a6f
...@@ -134,7 +134,6 @@ static void load_crash_log( HANDLE file ) ...@@ -134,7 +134,6 @@ static void load_crash_log( HANDLE file )
while (ReadFile( file, crash_log + pos, size - pos - 1, &len, NULL ) && len) while (ReadFile( file, crash_log + pos, size - pos - 1, &len, NULL ) && len)
{ {
pos += len; pos += len;
break;
if (pos == size - 1) crash_log = HeapReAlloc( GetProcessHeap(), 0, crash_log, size *= 2 ); if (pos == size - 1) crash_log = HeapReAlloc( GetProcessHeap(), 0, crash_log, size *= 2 );
} }
crash_log[pos] = 0; crash_log[pos] = 0;
......
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