我在下面的代码中收到“写入时访问冲突”错误,同时将空字节放在通过 Ollydbg 检查的字符串最后一个字符中,任何人都可以帮忙解决这个问题,谢谢
[SECTION .text]
global _start
_start:
jmp short stuff
code:
pop esi
xor eax,eax
mov byte [esi + 17],al ; put a null byte byte on [esi + 17]
stuff:
call code
db 'This is my string#'