Tagged Questions

A memory leak occurs when a program fails to release memory that it has allocated but is no longer using. In most cases the memory cannot be referenced and will therefore never be recovered.

learn more… | top users | synonyms (2)

317
votes
32answers
52k views

Creating a memory leak with Java

I just had an interview, and I was asked to create a memory leak with Java. Needless to say I felt pretty dumb having no clue on how to even start creating one. What would an example be?
160
votes
22answers
147k 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 ...
115
votes
2answers
2k views

Is this object-lifetime-extending-closure a C# compiler bug?

I was answering a question about the possibility of closures (legitimately) extending object-lifetimes when I ran into some extremely curious code-gen on the part of the C# compiler (4.0 if that ...
98
votes
47answers
9k 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 ...
74
votes
14answers
5k views

Anatomy of a “Memory Leak”

In .NET perspective: What is a Memory Leak? How to understand whether your application leaks? What are the effects? How to prevent a memory leak? If your application has memory leak, does it go away ...
68
votes
4answers
30k views

What is private bytes, virtual bytes, working set?

I am using perfmon windows utility to debug memory leak in a process. Perfmon explaination: Working Set- Working Set is the current size, in bytes, of the Working Set of this process. The Working ...
47
votes
15answers
3k views

Why can .NET not have memory leaks?

Ignoring unsafe code, .NET cannot have memory leaks. I've read this endlessly from many experts and I believe it. However, I do not understand why this is so. It is my understanding that the ...
47
votes
6answers
7k 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 ...
42
votes
6answers
24k views

What Android tools and methods work best to find memory/resource leaks?

I've got an Android app developed, and I'm at the point of a phone app development where everything seems to be working well and you want to declare victory and ship, but you know there just have to ...
42
votes
35answers
10k 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 ...
37
votes
6answers
38k views

java.lang.OutOfMemoryError: bitmap size exceeds VM budget - Android

I developed an application that uses lots of images on Android. The app runs once, fills the information on the screen (Layouts, Listviews, Textviews, ImageViews, etc) and user reads the information. ...
33
votes
7answers
7k views

Simple jQuery Ajax call leaks memory in Internet Explorer

I created a web page that makes an Ajax call every second. In Internet Explorer 7, it leaks memory badly (20 MB in about 15 minutes). The program is very simple. It just runs a JavaScript function ...
28
votes
2answers
1k views

What causes memory fragmentation in .NET

I am using Red Gates ANTS memory profiler to debug a memory leak. It keeps warning me that: Memory Fragmentation may be causing .NET to reserver too much free memory. or Memory ...
28
votes
12answers
6k 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 ...
25
votes
2answers
5k views

How to add a breakpoint to objc_exception_throw?

this was the answer from the brad larson on this SO question If you add two breakpoints, you should be able to debug these exceptions. To do this, go to Run | Show | Breakpoints and create two global ...
25
votes
10answers
6k 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. ...
24
votes
9answers
1k views

Memory leak C++

I just wrote a code in C++ which does some string manipulation, but when I ran valgrind over, it shows some possible memory leaks. Debugging the code to granular level I wrote a simple C++ program ...
24
votes
10answers
4k 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 ...
24
votes
17answers
14k 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?
22
votes
5answers
13k views

jQuery memory leak with DOM removal

Here's a dead-simple webpage that leaks memory in IE8 using jQuery (I detect memory leaks by watching the memory usage of my iexplore.exe process grow over time in the Windows Task Manager): ...
22
votes
6answers
4k 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 ...
22
votes
10answers
13k views

Finding cause of memory leaks in large PHP stacks

I have CLI script that runs over several thousand iterations between runs and it appears to have a memory leak. I'm using a tweaked version of Zend Framework with Smarty for templating and each ...
22
votes
5answers
14k views

ruby/ruby on rails memory leak detection

I wrote a small web app using ruby on rails, its main purpose is to upload, store, and display results from xml(files can be up to several MB) files. After running for about 2 months I noticed that ...
21
votes
5answers
543 views

JavaScript: should I worry about memory leaks in 2011?

The topic of memory leaks in JavaScript is not brought up often. However, I stumbled upon this article, written in 2007. The authors state: Internet Explorer and Mozilla Firefox are the two Web ...
20
votes
3answers
5k views

use instruments - leaks with a device

I'm starting to use Instruments-Leaks with an iPhone 3G. When I try to run the app with Instruments on the iPhone I obtain Target failed to run: Remote exception encountered: 'Failed to get task for ...
20
votes
16answers
2k 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 ...
19
votes
2answers
387 views

When Profiling Javascript in Chrome how do I know I've handled Memory Leaks?

I've been working on a game in for HTML 5 using the canvas tag, and I've build up quite a code base to cover my requirements. I also want to make sure I'm covering up all my memory leaks. I have ...
19
votes
1answer
364 views

How can I completely delete a package in Perl?

How do you completely delete a package in Perl? This means not only the package variables, but also any magic tables that Perl updates to handle inheritance changes and other things. This simple ...
19
votes
11answers
18k views

How do you detect memory leaks on iPhone?

I'm using the Leaks Instruments feature through Xcode to (try and) find memory leaks. I still haven't figured out how to use this program. I click Leaks in the program and see memory increasing as I ...
18
votes
7answers
410 views

Burst memory usage in Java

I am trying to get a handle on proper memory usage and garbage collection in Java. I'm not a novice programmer by any means, but it always seems to me that once Java touches some memory, it will never ...
18
votes
6answers
441 views

What happens if delete[] p fails?

Suppose I have a pointer to a dynamically allocated array of 10 elements: T* p = new T[10]; Later, I want to release that array: delete[] p; What happens if one of the T destructors throws an ...
18
votes
2answers
420 views

.NET Memory issues loading ~40 images, memory not reclaimed, potentially due to LOH fragmentation

Well, this is my first foray into memory profiling a .NET app (CPU tuning I have done) and I am hitting a bit of a wall here. I have a view in my app which loads 40 images (max) per page, each ...
18
votes
12answers
2k views

Memory leaks - the horror of every programmer?

I'm programming a game engine in C++, which also has Lua support. My biggest horror: Memory leaks. It's not like my game is already infested with them, I'm rather afraid of them popping out of the ...
18
votes
1answer
2k views

When and how is a java classloader marked for garbage collection?

We are creating multiple child classloaders to load in multiple subapplications into a Java application "container", prototyping hot deployment. When the classpath of a particular classloader has ...
18
votes
4answers
4k views

Weak event handler model for use with lambdas

OK, so this is more of an answer than a question, but after asking this question, and pulling together the various bits from Dustin Campbell, Egor, and also one last tip from the ...
18
votes
5answers
3k views

Do you know what may cause memory leaks in JavaScript?

Do you know what may cause memory leaks in JavaScript? I am interested in browsers: IE 7, FireFox 3, Safari 3
18
votes
5answers
13k views

What is the best free memory leak detector for a C/C++ program and its plug-in DLLs?

I have a .exe and many plug-in .dll modules that the .exe loads. (I have source for both.) A cross-platform (with source) solution would be ideal, but the platform can be narrowed to WinXP and Visual ...
17
votes
3answers
203 views

Memory leaking without objects growing in number or size

On an IBM iSeries system, I have a Java program running - an application server with a web server component, all in-house developed. When running on the 32 bit or 64 bit J9 JVM (IBM Technology for ...
17
votes
3answers
2k views

Android dalvikvm-heap: Clamp target GC heap

I am writing a procedure to sync large number of contacts with the Android Contacts database. The downloading works fine for about 700 contacts after which i am consistantly getting a memory heap ...
17
votes
7answers
914 views

Long lived Java WeakReferences

I am currently trying to diagnose a slow memory leak in my application. The facts I have so far are as follows. I have a heap dump from a 4 day run of the application. This heap dump contains ~800 ...
17
votes
3answers
678 views

Are invisible references still a problem in recent JVMs?

I was reading Java Platform Performance and section A.3.3 worried me. I had been working on the assumption that a variable that dropped out of scope would no longer be considered a GC root, but this ...
17
votes
28answers
4k views

Memory leaks in .NET

What are all the possible ways in which we can get memory leaks in .NET? I know of two: Not properly un-registering Event Handlers/Delegates. Not disposing dynamic child controls in Windows Forms: ...
16
votes
3answers
163 views

Why does an empty Java program consume memory?

I'm exploring memory usage in Java to understand why my program leaks memory. After stripping off code in my main while loop, I still get an increase of memory usage over time. Pondering the memory ...
15
votes
1answer
177 views

Why does nested forever leak memory?

This code leaks memory (very fast, be prepared to kill it soon if you try it): import Control.Monad (forever) main = do forever $ forever $ return () (Compiled with -O2, -O, -O0..., ghc 7.0.3) ...
15
votes
1answer
899 views

jQuery memory leak patterns and causes

What are some of the standard issues or coding patterns in jQuery which lead to memory leaks? I have seen a number of questions related to the ajax() call or jsonp or DOM removal on StackOverflow. ...
15
votes
9answers
910 views

Does an Appliation memory leak cause an Operating System memory leak?

When we say a program leaks memory, say a new without a delete in c++, does it really leak? I mean, when the program ends, is that memory still allocated to some non-running program and cant be used, ...
15
votes
6answers
1k views

Memory leak traps in the Java Standard API

What classes of the Java Standard API can cause memory leaks when used in an (not obviously) incorrect way? And how can these memory leaks be avoided/fixed? Example: ObjectInputStream and ...
15
votes
7answers
11k views

Not enough storage is available to process this command in VisualStudio 2008

When I try to compile an assembly in VS 2008, I got (occasionally, usually after 2-3 hours of work with the project) the following error Metadata file '[name].dll' could not be opened -- 'Not enough ...
15
votes
6answers
3k views

Circular References Cause Memory Leak?

I'm trying to run down a memory leak in a windows forms application. I'm looking now at a form which contains several embedded forms. What worries me is that the child forms, in their constructor, ...
15
votes
2answers
9k views

Memory Leaks in C# WPF

I could use some advice on tracking down the cause of memory leaks in C#. I understand what is a memory leak and I get why they occur in C# but I'm wondering what tools/strategies have you used in the ...

1 2 3 4 5 74