| 141 | } |
| 142 | |
| 143 | void __cdecl operator delete(void* Pointer) |
| 144 | { |
| 145 | if (!Pointer) return; |
| 146 | ExFreePoolWithTag(Pointer, CrtPoolTag); |
| 147 | } |
| 148 | |
| 149 | void __cdecl operator delete(void* Pointer, size_t Size) |
| 150 | { |
nothing calls this directly
no outgoing calls
no test coverage detected