46
votes
40answers
4k views
Are memory leaks ever ok?
Is it ever acceptable to have a memory leak in your C or C++ application?
What if you allocate some memory and use it until the very last line of code in your application (for example, a global …
29
votes
34answers
3k views
How do you detect/avoid Memory leaks in your (Unmanaged) code?
In unmanaged C/C++ code, what are the best practices to detect memory leaks? And coding guidelines to avoid? (As if it's that simple ;)
We have used a bit of a silly way in the past: having a counter …
26
votes
15answers
2k views
Memory Leak in C#
Is it ever possible in a managed system to leak memory when you make sure that all handles, things that implement IDispose are disposed?
Would there be cases where some variables are left out?
20
votes
11answers
1k views
How can I control IE6+jQuery+jQuery-ui memory leaks ?
Here's a sample page with a couple datepickers. Here's the Drip result for that:
This page leaks indefinitely in IE6sp1 when I click the Refresh button repeatedly (IE6sp3+, Opera 9, Chrome2, and …
19
votes
10answers
7k views
How to deal with “java.lang.OutOfMemoryError: PermGen space” error
Recently I ran into this error in my web application:
java.lang.OutOfMemoryError: PermGen space
It's a typical Hibernate/JPA + IceFaces/JSF application running on Tomcat 6 and JDK 1.6.
Apparently …
17
votes
4answers
917 views
Large Object Heap Fragmentation
The C#/.NET application I am working on is suffering from a slow memory leak. I have used CDB with SOS to try to determine what is happening but the data does not seem to make any sense so I was …
14
votes
9answers
2k views
Profiler and Memory Analysis Tools for Delphi
I recently upgraded from Delphi 4 to Delphi 2009. With Delphi 4 I had been using GpProfile by Primoz Gabrijelcic as a profiler and Memory Sleuth by Turbo Power for memory analysis and leak debugging. …
14
votes
12answers
1k views
What strategies and tools are useful for finding memory leaks in .net?
I wrote C++ for 10 years. I encountered memory problems, but they could be fixed with a reasonable amount of effort.
For the last couple of years I've been writing C#. I find I still get lots of …
13
votes
3answers
667 views
Why is my Java program leaking memory when I call run() on a Thread object?
(Jeopardy-style question, I wish the answer had been online when I had this issue)
Using Java 1.4, I have a method that I want to run as a thread some of the time, but not at others. So I declared it …
12
votes
5answers
740 views
Trying to track down a memory leak / garbage-collection problem in Java.
This is a problem I have been trying to track down for a couple months now. I have a java app running in that processes xml feeds and stores the result in a database. This has been giving intermittent …
12
votes
3answers
322 views
Are invisible references still a problem in recent JVMs?
I was reading http://java.sun.com/docs/books/performance/1st_edition/html/JPAppGC.fm.html and section A.3.3 worried me.
I had been working on the assumption that a variable that dropped out of scope …
11
votes
14answers
1k views
Memory leak detectors for C?
What memory leak detectors have people had a good experience with?
Here is a summary of the answers so far:
Valgrind - Instrumentation framework for building dynamic analysis tools.
Electric Fence …
10
votes
15answers
626 views
Do Small Memory Leaks Matter Anymore?
With RAM typically in the Gigabytes on all PC's now, should I be spending time hunting down all the small (non-growing) memory leaks that may be in my program? I'm talking about those holes that may …
10
votes
2answers
258 views
cocoa 64bit binaries leak memory? (releasing NSData does not free memory)
i've been playing some time with different builds of my application and there seem strange things to happen:
my app has a 5mb idle footprint. when uploading a file memory in size of the file is …
10
votes
9answers
315 views
What is your “Watch out” list regarding avoiding memory leaks when you write .NET code?
What do you keep on mind to avoid memory leaks when you write thousands lines of .NET code?
I'm a big fan of prevention over inspection , there is a famous example regarding this point which is using …
