mirror of
https://github.com/reactos/wine.git
synced 2024-12-03 17:31:15 +00:00
Fix decoding of thread IDs in the gdbproxy.
This commit is contained in:
parent
1c97e56fa9
commit
8fa319264d
@ -126,7 +126,8 @@ static inline unsigned char hex_to0(int x)
|
||||
static int hex_to_int(const char* src, size_t len){
|
||||
unsigned int returnval = 0;
|
||||
while (len--){
|
||||
returnval=hex_from0(src[0]);
|
||||
returnval|=hex_from0(src[0]);
|
||||
src++;
|
||||
if(len) returnval<<=4;
|
||||
}
|
||||
return returnval;
|
||||
|
Loading…
Reference in New Issue
Block a user