mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
[KDGDB]
- Fix a stupid typo, causing all threads to have the same backtrace. svn path=/trunk/; revision=72806
This commit is contained in:
parent
844f4e8868
commit
14628d18e5
1 changed files with 0 additions and 1 deletions
|
@ -196,7 +196,6 @@ gdb_send_registers(void)
|
||||||
RegisterPtr = thread_to_reg(DbgThread, i, &size);
|
RegisterPtr = thread_to_reg(DbgThread, i, &size);
|
||||||
if (RegisterPtr)
|
if (RegisterPtr)
|
||||||
{
|
{
|
||||||
RegisterPtr = ctx_to_reg(&CurrentContext, i, &size);
|
|
||||||
RegisterStr[0] = hex_chars[RegisterPtr[0] >> 4];
|
RegisterStr[0] = hex_chars[RegisterPtr[0] >> 4];
|
||||||
RegisterStr[1] = hex_chars[RegisterPtr[0] & 0xF];
|
RegisterStr[1] = hex_chars[RegisterPtr[0] & 0xF];
|
||||||
RegisterStr[2] = hex_chars[RegisterPtr[1] >> 4];
|
RegisterStr[2] = hex_chars[RegisterPtr[1] >> 4];
|
||||||
|
|
Loading…
Reference in a new issue