MFC_C++

C++/MFC

cskimair 2023. 11. 30. 14:10

 

1. 메모리 누수 탐지

- https://imcyber.tistory.com/74

 

메모리누수(leak) 탐지소스

// 메모리 누수 탐지 하는 다른 방법 void Dump_Blocks_In_All_Heaps () { //get all the heaps in the process HANDLE heaps [100]; DWORD c = ::GetProcessHeaps (100, heaps); printf ("The process has %d heaps.\n", c); //get the default heap and the CR

imcyber.tistory.com