Tagged Questions
5
votes
2answers
446 views
Is KillTimer necessary?
I use SetTimer API and I see a lot of code like this:
case WM_DESTROY:
// Destroy the timer.
KillTimer(hwnd, IDT_TIMER);
PostQuitMessage(0);
break;
Do I have to call KillTimer ...
4
votes
3answers
137 views
What can cause section handle leaks?
This is a follow-up question to my previous question.
As suggested in this answer to my previous question, I used ProcessExplorer to analyze a list of handles that my application is using to find a ...
2
votes
2answers
142 views
How to trace handle leaks?
In one of my applications I observe an increasing number of handles. The number is incremented roughly every second without using the application, so there must be a handle leak in some part of the ...
2
votes
1answer
215 views
Where was handle allocated?
I am wondering if it is possible to use WinDbg to kwown the callstack that lead to the allocation of a handle.
For example:
#include <windows.h>
#include <conio.h>
#include ...
1
vote
1answer
25 views
Debug technique for debugging an unusual memory leak
I have a windows application (legacy) that leaks a lot of memory. It does not leak private bytes, I only see with process explorer that it keeps loading from time to time many instances of the same ...
0
votes
1answer
231 views
How do I track down a Windows USER object leak?
I have a program that is leaking USER objects which can be seen in Task Manager. Is there a way to determine which type of resource is being leaked? I've used programs like GDI View for GDI leaks ...
0
votes
2answers
361 views
debugging a resource leak in a printer driver
I'm trying to debug a memory leak in a printer driver. I'm pretty sure it's a resource leak, not just a plain memory leak because analyzing heap with !heap -s in windbg doesn't show any increase. ...