winedbg: Remove superfluous break instruction.

oldstable
André Hentschel 2012-01-17 22:22:09 +01:00 committed by Alexandre Julliard
parent ed417a6f13
commit 2c568309e3
1 changed files with 0 additions and 1 deletions

View File

@ -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;