Skip to content

Commit

Permalink
Fix broken op-code
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Nov 23, 2021
1 parent c7ba318 commit 89742c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gum/backend-x86/gumstalker-x86.c
Expand Up @@ -3346,7 +3346,7 @@ gum_exec_ctx_get_branch_target_address (GumExecCtx * ctx,
gum_x86_writer_put_mov_reg_reg_ptr (cw, GUM_REG_RAX, GUM_REG_RAX);
#else
gum_write_segment_prefix (target->pfx_seg, cw);
gum_x86_writer_put_u8 (cw, 0x3e);
gum_x86_writer_put_u8 (cw, 0xa1);
gum_x86_writer_put_bytes (cw, (guint8 *) &target->absolute_address,
sizeof (target->absolute_address));
#endif
Expand Down

0 comments on commit 89742c4

Please sign in to comment.