Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
17answers
495 views

.NET Resource Leak 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 one answer per item, ...
8
votes
6answers
2k views

Do I need to call Close() on a ManualResetEvent?

I've been reading up on .NET Threading and was working on some code that uses a ManualResetEvent. I have found lots of code samples on the internet. However, when reading the documentation for ...
7
votes
2answers
2k views

Does DataAdapter.Fill() close its connection when an Exception is thrown?

I am using ADO.NET (.NET 1.1) in a legacy app. I know that DataAdapter.Fill() opens and closes connections if the connection hasn't been opened manually before it's given to the DataAdapter. My ...
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 ...
4
votes
5answers
318 views

Diagnosing Cause of 100% CPU Usage by “System” Process

I have a Windows server application, implemented in C++ using the Win32 API, that does a lot of serial and TCP/IP communication. As it runs, CPU usage gradually increases, until it reaches 100%. ...
4
votes
4answers
763 views

COM:Can i call CoUninitialize without calling Release?

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? Thanks in Advance, -Mani.
3
votes
1answer
31 views

RenderTargetBitmap GDI handle leak in Master-Details view

I have an app with a Master-Details view. When you select an item from the 'master' list, it populates the 'details' area with some images (created via RenderTargetBitmap). Each time I select a ...
3
votes
3answers
106 views

Using statement around dialog form to ensure garbage collection

We have a Windows Forms application that contains thousands of forms. Many of these are temporarily displayed as dialogs via the ShowDialog() method. This application has been around for years and ...
3
votes
1answer
61 views

Memory leak issue. Instument shows error in line 2

NSArray *arrAllAttributes = [[NSArray alloc]init]; arrAllAttributes = [app mtdAllCountry]; [arrAllAttributes retain]; for(int i = 0; i<[arrAllAttributes count]; i++) { NSDictionary *dictTemp1 = ...
3
votes
6answers
2k views

Hunting down EOutOfResources

Question: Is there an easy way to get a list of types of resources that leak in a running application? IOW by connecting to an application ? I know memproof can do it, but it slows down so much ...
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
3answers
53 views

What's a good pattern for a java unit test that ensures that you are properly closing files?

I have an issue in my codebase where we are not properly closing file handles, or probably streams. We eventually get a TooManyOpenFiles exception under very heavy load. Based on the output of lsof, ...
2
votes
2answers
64 views

File handle leaking (maybe) in a C library makes trouble with NFS (+python, but that's incidental)

here is a quite cool problem. I have a python script (main) that calls a python module (foo.py) which in turns calls another python module (barwrapper.py) uses LoadLibrary to dynamically open and ...
2
votes
1answer
265 views

Resource leak when using KeyGuardManager

I am trying to use the KeyGuardManager and KeyguardLock to unlock the phone but it only works the first few times and when I kill my application I get: WindowManagerService.mKeyguardTokenWatcher: ...
2
votes
3answers
229 views

Hundreds of custom UserControls create thousands of USER Objects

I'm creating a dashboard application that shows hundreds of "items" on a FlowLayoutPanel. Each "item" is a UserControl that is made up of 12 or labels. My app queries a database and then creates an ...
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
178 views

How to prevent resource leaks while using Open/Save file dialog in c#

we are using save/opn file dialog in our desktop application(C#). When we open the dialog for the first time, handles are increased by 100. After closing the dialog the handles are not getting ...
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 ...
1
vote
4answers
1k views

Why is java.lang.ThreadLocal a map on Thread instead on the ThreadLocal?

Naively, I expected a ThreadLocal to be some kind of WeakHashMap of Thread to the value type. So I was a little puzzled when I learned that the values of a ThreadLocal is actually saved in a map in ...
0
votes
1answer
48 views

NSDictionary mutableCopy raises exc_bad_access

After copying the keys in NSDictionary, I get a crash. I am using ARC. What is the reason? -(NSArray*) findClosestPointsAroundPoint: (NSDictionary*) p inTable: (NSString*) table { NSMutableArray* ...
0
votes
1answer
141 views

Is this a memory leak? Kernel Resource leak? (C++, parallel studio)

Background: I'm working on some code to read in data from a file. Examples of data are separated by newlines. Also, there is a meta-level to the data and a semicolon acts as a delimiter to indicate ...
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. ...