Allocator that ensures that deallocated data is zeroized.
| 7 | |
| 8 | // Allocator that ensures that deallocated data is zeroized. |
| 9 | struct ProxyAllocator; |
| 10 | |
| 11 | unsafe impl GlobalAlloc for ProxyAllocator { |
| 12 | unsafe fn alloc(&self, layout: Layout) -> *mut u8 { |
nothing calls this directly
no outgoing calls
no test coverage detected