| 48 | } |
| 49 | |
| 50 | bool MemoryPatch::isValid() const |
| 51 | { |
| 52 | return (_pMem && _address && _size && _orig_code.size() == _size && _patch_code.size() == _size); |
| 53 | } |
| 54 | |
| 55 | size_t MemoryPatch::get_PatchSize() const |
| 56 | { |
no outgoing calls
no test coverage detected