mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-23 21:29:49 +00:00
Fix type punned pointers in windbg
This commit is contained in:
parent
4b67c37fd5
commit
869d629bee
@ -590,8 +590,9 @@ int windbg_sync(WindCtx *ctx) {
|
||||
// Reset the sequence id
|
||||
ctx->seq_id = 0x80800001;
|
||||
|
||||
ctx->cpu = PKT_STC (s)->cpu;
|
||||
ctx->cpu_count = PKT_STC (s)->cpu_count;
|
||||
kd_stc_64 *stc64 = (kd_stc_64*)s->data;
|
||||
ctx->cpu = stc64->cpu;
|
||||
ctx->cpu_count = stc64->cpu_count;
|
||||
ctx->target = NULL;
|
||||
ctx->plist_cache = NULL;
|
||||
ctx->pae = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user