mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-24 05:40:10 +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
|
// Reset the sequence id
|
||||||
ctx->seq_id = 0x80800001;
|
ctx->seq_id = 0x80800001;
|
||||||
|
|
||||||
ctx->cpu = PKT_STC (s)->cpu;
|
kd_stc_64 *stc64 = (kd_stc_64*)s->data;
|
||||||
ctx->cpu_count = PKT_STC (s)->cpu_count;
|
ctx->cpu = stc64->cpu;
|
||||||
|
ctx->cpu_count = stc64->cpu_count;
|
||||||
ctx->target = NULL;
|
ctx->target = NULL;
|
||||||
ctx->plist_cache = NULL;
|
ctx->plist_cache = NULL;
|
||||||
ctx->pae = 0;
|
ctx->pae = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user