Tagged Questions

A memory leak occurs when a program consumes memory that is not or cannot be later released to the operating system.

learn more… | top users | synonyms (1)

43
votes
3answers
2k views

Why does jquery leak memory so badly?

This is kind of a follow-up to a question I posted last week: http://stackoverflow.com/questions/2429056/simple-jquery-ajax-call-leaks-memory-in-ie I love the jquery syntax and all of its nice ...
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. ...
30
votes
8answers
1k views

Why is it a memory leak? What could I catch if I shall use such things in C++?

I wonder, if I allocate memory for the pointer of some class/struct, why shall I get the memory leak? For example: class A { ... }; struct B { ... }; A *object1 = new A(); B object2 = *(new B()); ...
13
votes
8answers
897 views

Why doesn't deleting my pointer delete my pointer?

So to understand new/delete better (really to prove to myself with small examples why virtual destructors are needed for interfaces), I want to understand memory leaks, so that I may live in fear of ...
13
votes
3answers
377 views

What happens to base class destructor if a derived class destructor throws an exception

It just happened to me I wondered how resources are freed in the following case. class Base { Resource *r; public: Base() { /* ... */ } ~Base() { delete r; } }; class Derived : public ...
13
votes
16answers
7k views

Memory leak tool for C++ under Windows

I need a recommendation of a free tool (even for a trial) for detecting memory leaks in C++ under Windows (Visual Studio 2005). I've looked in the net, but I would prefer a recommendation.
11
votes
8answers
6k views

Iphone SDK Utility Application template has leak

i'm only create an project with a Utility Application template. This template has a native memory leak when i push "info button" to flip the view. Anyone know how can i fix this leak ??? I just make ...
10
votes
7answers
3k views

Instruments Leaks - Not showing my source code

I am attempting to analyze an iPhone application using the Leaks application and everything appears to be working fine, except for when I try to view detailed information about a particular memory ...
9
votes
2answers
343 views

Why am I leaking memory with this python loop?

I am writing a custom file system crawler, which gets passed millions of globs to process through sys.stdin. I'm finding that when running the script, its memory usage increases massively over time ...
8
votes
1answer
182 views

Fixing a particularly obscure Haskell space leak

So after having squeezed the last bit of performance out of some Haskell I am using to break tweet data into n-grams, I'm running up against a space leak problem. When I profile, the GC uses about ...
8
votes
7answers
334 views

Meaning of Leaky Abstraction?

What does the term "Leaky Abstraction" mean? (Please explain with examples. I often have a hard time grokking a mere theory.)
8
votes
3answers
2k views

Possible to force Delphi threadvar Memory to be Freed?

I have been chasing down what appears to be a memory leak in a DLL built in Delphi 2007 for Win32. The memory for the threadvar variables is not freed if the threads still exist when the DLL is ...
7
votes
1answer
537 views

InputMethodManager holds reference to the tabhost - Memory Leak - OOM Error

View hierarchy is as follows TabActivity -> ActivityGroups -> Activities. Using MAT I found that TabWidget is referenced by TabHost which is referenced by InputMethodManager, hence TabWidget is ...
7
votes
1answer
1k views

XCode>Instruments>Leaks - Where is “gather leaked memory contents” data?

When you check gather leaked memory contents in the Leaks instrument what does this do? I have a troublesome leak and thought maybe this "memory content" might be useful in tracking it down...but I ...
6
votes
1answer
224 views

How to get around the memory leak in the .NET Webbrowser control?

This is a widely-known, old issue with the .NET Webbrowser control. Summary: Having the .NET webbrowser control Navigate to a page increases memory usage that is never freed. Reproduce the memory ...
6
votes
3answers
302 views

Overloaded new operator problems

I decided to overload the new, new[],... operators in my classes so I can log the file and line at which they were called so I can easier track memory allocations/leaks. Now the problems is in my ...
6
votes
4answers
468 views

ClassLoader Leak - Are they worth solving?

ClassLoader leaks usually result in java.lang.OutOfMemoryError: PermGen. In the instance of working on application servers you may see this as a result of many redeploys of a common application. The ...
6
votes
3answers
826 views

Large Memory Leak Using Reachability

Using Instruments on the device it detects a 3.50 KB memory leak using Apple's Reachability 2.0 code in my app. The Leaked Object is GeneralBlock-3584. The leaks tool points to the following code: - ...
6
votes
3answers
899 views

C++/Qt - Memory allocation question

I recently started investigating Qt for myself and have the following question: Suppose I have some QTreeWidget* widget. At some moment I want to add some items to it and this is done via the ...
6
votes
5answers
250 views

Is There a Time at which to ignore IDisposable.Dispose?

Certainly we should call Dispose() on IDisposable objects as soon as we don't need them (which is often merely the scope of a "using" statement). If we don't take that precaution then bad things, ...
5
votes
4answers
201 views

Avoiding memory leaks

How can we use an overloaded operator to prevent memory leaks in C++? Any complete example.. Regards, PKV
5
votes
1answer
305 views

Memory Leak in my PHP App (built with Codeigiter Framework) [closed]

I have a PHP app built on Codeigniter 1.7.2, currently in production and live, that seems to have a serious memory leak. The memory leak is apparent from looking at "top" on the server: top - ...
5
votes
3answers
512 views

Adding DOM elements with jquery append() appears to leak memory?

Just met with a customer who have huge memory leak issues in their Ajax webapp. So I decided to create the following testcase to demonstrate the problem: I have used drip / Sieve for memory profiling ...
5
votes
11answers
399 views

Is there any limit on number of html elements, that browser can display without problems?

Basically I've got a huge table, which gets even bigger as user scrolls down (auto preloading subsequent rows). At some point browser becomes sluggish, it starts to hang for a moment as I click around ...
5
votes
6answers
1k views

Memory leak checker for Windows that supports GCC? [closed]

Anyone know of a good memory leak checker that supports GCC on Windows? Unfortunately, IBM's Purify only works for GCC on Linux; and of course valgrind doesn't run on Windows.
5
votes
3answers
2k views

How to deal with memory leaks in RMagick in Ruby?

Im developing web-application with Merb and im looking for some safe and stable image processing library. I used to work with Imagick in php, then moved to ruby and start using RMagick. But there is a ...
5
votes
5answers
1k views

How do I track down a mod_perl memory leak?

I'm using mod perl 1.3.0 with apache 1.3.41 perl version 5.8.6, and the memory size seems to grow about 4k every 3rd or 4th request. The Perl script we are running is simply: print "Content-type: ...
4
votes
2answers
108 views

Just a loop, and 33 leaks

Look something strange on my mac : $> cat main.c #include <stdio.h> int main(int ac, char **av) { for (int i = 0; i < ac; i++) printf("%s\n", av[i]); return 0; } ...
4
votes
4answers
52 views

Does continous reassigning of character strings lead to memory leak?

I have two questions: Q1. The character pointers are used to point to a location where a given string is stored. If we keep reassigning the string, does it lead to memory leak? On a Linux system I ...
4
votes
2answers
76 views

WPF finding resource and memory leaks

Does anyone have some suggestions for issolating resource and/or memory leaks in a WPF application? I have verified that there does appears to be some significant leaks in our application through the ...
4
votes
7answers
169 views

Leaking memory when assigning new value to variable?

Yes, I'm one of those fellows that is learning C++ coming from Java, being spoiled with an automatic garbage collector. There's a particular situation where I'm wondering whether I'm leaking memory or ...
4
votes
3answers
141 views

Instruments leaks stopping after app starts

So I want use Leaks to find the leaks in my app. In Xcode, I go to "Product" and then hit "Profile". In Instruments I select Leaks and it starts. My app is starting and Leaks is running. But just as ...
4
votes
1answer
264 views

Boost thread Leakage C++

Could someone let me know whether boost thread library leaks. It seems to me that it does: Google says that I should compile with both boost thread and pthread which I am doing and that in version ...
4
votes
4answers
219 views

Delphi 7.0 and memory leak?

After spending time with FastMM4 in weeding out any pieces of code that could possibly cause memory leak as indicated by FastMM4, we have been test running our software for about a month non-stop on ...
4
votes
2answers
388 views

C-extension in Python - return Py_BuildValue() memory leak problem

I have a huge memory leak problem involving a C-extension I'm developing. In C, I have an array of doubles called A and an int variable called AnotherIntVariablethat I want to pass to Python. Well, in ...
4
votes
1answer
333 views

How to clean up JSONP memory in Internet Exploreor

I am new to JSONP development and I find out that IE 7/8 will not clean up the memory of which JSONP script takes. This leads to very high memory consumption in my page after running a couple of ...
4
votes
5answers
2k views

why is a scalar deleting destructor being called as a result of vector delete on Windows?

I have a code that is leaking on Windows. It runs fine on many unix platforms and the leak only occurs on Windows. The binary consists of exe, 1 dll and 2 static libs. The exe links to both the dll ...
4
votes
4answers
305 views

What is going on here? (.Net) GC.CollectionCount(0) keeps increasing

While testing application performance, I came across some pretty strange GC behavior. In short, the GC runs even on an empty program without runtime allocations! The following application ...
4
votes
1answer
2k views

iPhone: OpenAL & AudioToolbox leak

I work with OpenAL to play sounds in my app. When I test it using Instruments tool, it finds a leak: LeakedObject = GeneralBlock-512 Size = 512 Bytes Responsible Library = AudioToolbox Responsible ...
4
votes
3answers
568 views

Is valgrind crazy or is this is a genuine std map iterator memory leak?

Well, I'm very new to Valgrind and memory leak profilers in general. And I must say it is a bit scary when you start using them cause you can't stop wondering how many leaks you might have left ...
4
votes
3answers
254 views

Can memory be leaked when using vector of pointer in c++?

I tried this: .... vector<players*> player; for (int i = 0; i<10; i++) { player.push_back(new players()); } ... And I wonder if I need to free memory for the vector? If so, how?
4
votes
1answer
468 views

What is causing my C#.NET memory leak, in an application that is sitting idle?

I am trying to work out some memory leak issues in an application, and I am really hoping someone here can offer me some insights that will help. I've been tinkering with this all day and I am afraid ...
4
votes
4answers
5k views

AVAudioPlayer memory leak

I'm stuck on some weird memory leak problem related to the AVAudioPlayer and I need help after trying everything that came to mind. Here is the short description of the problem - code appears right ...
4
votes
3answers
1k views

Memory leak (sort of) with a static std::vector

I have a static std::vector in a class. When I use Microsoft's memory leak detection tools: _CrtMemState state; _CrtMemCheckpoint( & state); _CrtMemDumpAllObjectsSince( & state ); it ...
4
votes
0answers
2k views

Can someone verify that this is an IE8 memory leak?

The leak is pretty easy to create. Place the HTML below alongside a list of large images named "TestImage0.jpg", "TestImage1.jpg",..."TestImage9.jpg". The page will leak memory (I used sIEve for ...
4
votes
1answer
581 views

Track down Memory leaks in a Ruby Script

I have created a Ruby XMPP Framework called babylon. I have then created a few applications with it and even though they run pretty smoothly, it seems that they're eating my computer memory bit by ...
4
votes
2answers
3k views

Using Instruments Leaks & Object Alloc: Are autoreleased objects counted as leaks?

I have an iPhone app that's getting memory warnings and so I'm trying to find leaks, make more efficient use of memory, etc., with the help of Instruments. Amongst other things, I'm trying to take out ...
4
votes
4answers
4k views

How to Test for Memory Leaks?

We have an application with hundreds of possible user actions, and think about how enhancing memory leak testing. Currently, here's the way it happens: When manually testing the software, if it ...
3
votes
2answers
54 views

iOS: Memory Leak

In a Utilities class, I have the following method: + (Division *) getNationalDivision { Division *defaultDivision = [[[Division alloc] init] autorelease]; defaultDivision.Id = 0; ...
3
votes
3answers
52 views

Why Memory is leaking in Xcode

I dont know why this is giving memory leak in xcode 4.2. Since I didn't alloc eventArraySave do I need to release it? I thought this will be added to the autorelease pool. //Unarchive in to array ...

1 2 3 4 5 10