| 58 | } |
| 59 | |
| 60 | static void* threadsafe_mem_leak_realloc(void* memory, size_t size, const char* file, size_t line) |
| 61 | { |
| 62 | MemLeakScopedMutex lock; |
| 63 | return MemoryLeakWarningPlugin::getGlobalDetector()->reallocMemory(getCurrentMallocAllocator(), (char*) memory, size, file, line, true); |
| 64 | } |
| 65 | |
| 66 | |
| 67 | static void* mem_leak_malloc(size_t size, const char* file, size_t line) |
nothing calls this directly
no test coverage detected