Tagged Questions
The handle-leak tag has no wiki summary.
12
votes
3answers
510 views
odd handle leak
My application (base application is MFC interop with C++/CLI but it also contains a lot of C#, Windows Forms, WPF) has has a handle leak. Shortly after application start I can see the handle count in ...
6
votes
4answers
455 views
How to avoid leaking handles when invoking in UI from System.Threading.Timer?
It seems like calling Invoke on a winforms control in a callback from a System.Threading.Timer leaks handles until the timer is disposed. Does anyone have an idea of how to work around this? I need ...
0
votes
1answer
204 views
!htrace shows no callstack
When I use !htrace -diff in WinDbg to debug a handle leak, I get a lot of handles (probably the ones that are leaking) that do not show a callstack:
What could be a reason for this and what options ...
0
votes
3answers
522 views
Handle leaks with .NET System.Threading.Thread class
I've a problem that number of Handles in my app is continuously growing. I did the debugging and recognize that this is caused by System.Threading.Thread class which is used for some routine. To ...