| 113 | constexpr unsigned long CrtPoolTag = 'TRC_'; |
| 114 | |
| 115 | void* __cdecl operator new(size_t Size) |
| 116 | { |
| 117 | void* Pointer = ExAllocatePoolWithTag(NonPagedPool, Size, CrtPoolTag); |
| 118 | if (Pointer) RtlZeroMemory(Pointer, Size); |
| 119 | return Pointer; |
| 120 | } |
| 121 | |
| 122 | void* __cdecl operator new(size_t Size, POOL_TYPE PoolType) |
| 123 | { |
nothing calls this directly
no outgoing calls
no test coverage detected