Riremito

DbgView Find next bug fix

Jul 13th, 2024
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. 元のコード
  2. 0040D593 - 6A FF - push -01 { 255 }
  3. 0040D595 - 68 0C100000 - push 0000100C { 4108 }
  4. 0040D59A - 52 - push edx
  5. 0040D59B - FF 15 60444300 - call dword ptr [00434460]
  6. 0040D5A1 - 8B F0 - mov esi,eax // 現在選択中の行数
  7.  
  8. 修正Patch!
  9. 0040D5A1 - E9 3C40FFFF - jmp 004015E2
  10. 適当な空きメモリ
  11. 004015E2 - 40 - inc eax // 次の行を検索開始位置に設定
  12. 004015E3 - 8B F0 - mov esi,eax
  13. 004015E5 - 89 74 24 18 - mov [esp+18],esi
  14. 004015E9 - E9 B9BF0000 - jmp 0040D5A7
  15.  
  16. 現在選択中の行から検索が開始されるため、同じ行がヒットするバグを修正
Advertisement
Add Comment
Please, Sign In to add comment