Remove debug_assert

This commit is contained in:
Christiaan Dirkx 2021-04-02 17:50:23 +02:00
parent c86e0985f9
commit db1d003de1

View File

@ -223,10 +223,7 @@ unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout) {
// SAFETY: `heap` is a non-null handle returned by `GetProcessHeap`,
// `block` is a pointer to the start of an allocated block.
unsafe {
let err = HeapFree(heap, 0, block as c::LPVOID);
debug_assert!(err != 0, "Failed to free heap memory: {}", c::GetLastError());
}
unsafe { HeapFree(heap, 0, block as c::LPVOID) };
}
#[inline]