winedbg: Fixed an infinite loop.

This commit is contained in:
Florian Köberle 2008-09-10 09:39:24 +02:00 committed by Alexandre Julliard
parent c79759786d
commit 49c96a5075
1 changed files with 2 additions and 2 deletions

View File

@ -452,9 +452,9 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
}
}
}
count -= min(count, 256);
fcp->Start += 256;
}
count -= min(count, 256);
fcp->Start += 256;
}
if (!ok) dbg_print_longlong(val_int, TRUE);
}