Tagged Questions

4
votes
4answers
89 views

COM:Can i call CoUninitialize without calling Release?

Hey Folks, I have a doubt. I initialize COM, do CoCreateInstance and use some interfaces.Can I call CoUninitialize without calling Release? Does it cause any memory/resource leak? …
0
votes
0answers
82 views

WebBrowser control resource leak

I'm working on a .NET application that loads web pages using multiple WebBrowser controls. There are several threads and WebBrowser controls involved (this is a server application) …
2
votes
1answer
62 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> #i …
1
vote
2answers
90 views

Is KillTimer necessary?

Hi All! 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; …
6
votes
14answers
224 views

.Net Resource Leaks Gotchas

There are several ways that developers can get caught out by unintentional resource leaks in .Net. I thought it would be useful to gather them in one place. Please add yours with …