| 2022 | |
| 2023 | |
| 2024 | void FreeInterProcMem(HANDLE aHandle, LPVOID aMem) |
| 2025 | { |
| 2026 | VirtualFreeEx(aHandle, aMem, 0, MEM_RELEASE); // Size 0 is used with MEM_RELEASE. |
| 2027 | CloseHandle(aHandle); |
| 2028 | } |
| 2029 | |
| 2030 | |
| 2031 |
no outgoing calls
no test coverage detected