| 14 | } |
| 15 | |
| 16 | MemoryPatch::~MemoryPatch() |
| 17 | { |
| 18 | // clean up |
| 19 | _orig_code.clear(); |
| 20 | _orig_code.shrink_to_fit(); |
| 21 | |
| 22 | _patch_code.clear(); |
| 23 | _patch_code.shrink_to_fit(); |
| 24 | } |
| 25 | |
| 26 | MemoryPatch::MemoryPatch(IKittyMemOp *pMem, uintptr_t absolute_address, const void *patch_code, size_t patch_size) |
| 27 | { |