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)

1
vote
1answer
29 views

Trying to debug memory leaks using Visual Studio 2008 Heap Debugger

We're trying to track down memory leaks in our Visual Studio C++ application. The application is unmanaged. I've been trying to use the VS Heap Debugger, to display file locations of leaked memory. ...
1
vote
1answer
25 views

UIGraphicsImageContext leaks when backgrounded

Supposedly the UIKit calls are thread safe as of iOS 4, but when I try to render a PDF page in a background thread and pulling out an image from the view, I get a ton of leaks. As soon as I put it in ...
0
votes
2answers
37 views

Does iOS retrieve leak memory?

Supposed my app alloc memory every ViewDidLoad and not release. And my app does some work that cause memory fragmented. Does iOS retrieve that leak memory, or that leak memory is untouched until next ...
1
vote
1answer
24 views

Size of type and memory allocation [duplicate]

I've got a trouble with dynamic memory allocation. Somehow, actual size of my struct (sum of all the parts) is less than size of the type itself. Here is the code: #include <stdio.h> #include ...
2
votes
1answer
63 views

TXSDateTime/TXSDecimal memory leaks in web services in Delphi XE

I'm experiencing some challenges with memory management with a TRemotable descendant class that was created by the WSDL importer in Delphi XE. The TRemotable descendant class is declared as follows: ...
1
vote
1answer
33 views

Object sent - autorelease too many times, getting this leak for my iPhone app?

I am getting too many Object sent - autorelease too many times, this memory leak for my iPhone app and dont know how to resolve it http://screencast.com/t/fPzMNewvq Above is screen shot for the same. ...
0
votes
2answers
32 views

Getting memory leak in while adding button on Status bar in my iPhone project

I am getting memory leak while adding button on status bar, whaen I am tries to release the leak object, the button wont display on status bar. http://screencast.com/t/d20XBvYBcgu Above is screenshot ...
0
votes
1answer
24 views

Javascript memory analyser: What does it mean if a Htmldiv element shows up in the heapsnapshot after the page is navigated away from?

So I am running javascript memory analyser in visual studio for my windows store app . I see that one of the div elements that belongs to a page is showing up on the heap snapshot after we navigate ...
1
vote
1answer
43 views

WIndows 7: How to retrieve committed memory via C++

I've found several answers to this question here on SO, but none that answers my question. I'm trying to track down some memory leaks in our unmanaged C++ application, and from reading the following, ...
0
votes
0answers
65 views

Memory leak in my javascript app

I am new to javascript/html app development. I have page1 with a button when clicked takes me to page2. Every time I go to page1 to page2 and then navigate back to page1 there is a 10 MB increased in ...
0
votes
1answer
36 views

UIImage Animation Causing App to Crash / Memory Leaks

I'm using a UIImage animation and it is causing numerous memory leaks and crashes for different users using the application. Below is my code. I am preloading the set of two animation in ...
0
votes
0answers
48 views

Why is this javascript a memory leak

Can anyone help me figure out why this is a memory leak, is this perhaps a circular reference, and what can I do to prevent it from leaking? //THIS FUNCTION FIRST EXPANDS THE IFRAME TO FILL ALL ...
1
vote
1answer
49 views

massive memory leak in ios uIwebview

looking for mem leaks elsewhere in our system, I created a 20 MB web page with a meta refresh tag. the idea was to move a lot data through our datapath code to confirm mem stability. <html> ...
0
votes
0answers
46 views

NSCFString Memory leak reported in Lion not in snow leopard

Instruments reports leak in NSCFString and NSURL in following function on Lion. It does not report leak in snow leopard. Please help in finding the leak. Memory usage increases in the function. ...
1
vote
3answers
72 views

No memory leaks

In my college we were asked to create a program which allocates all of the free memory. So I figured that making an infinite loop and allocating memory without freeing it must consume up all the free ...
0
votes
0answers
29 views

Does checking for function exists prevent browser garbage collection from freeing memory?

I have JavaScript in file A which loads file B (through a jquery AJAX load) into element X. On success, file A calls resizewin (below) which checks if the function resizeContent exists (which was in ...
0
votes
1answer
33 views

Why tiny memory leak in this func related to UIGraphicsBeginImageContext?

I have a simple function to create an UIImage with special size : - (UIImage*)imageWithSize:(CGSize) imSize { UIGraphicsBeginImageContext( imSize ); float r = 0.5f; float g = 0.5f; ...
3
votes
1answer
72 views

How to force didReceiveMemoryWarning called under an ARC application

I've heard that didReceiveMemoryWarning is most likely to be called when you are consistently leaking allocations. However, under ARC I have always thought that allocated local variables are ...
2
votes
2answers
104 views

How can this Pure Perl programming example be leaking?

I have recently been performing some leak checking on a particularly gnarly piece of recursive XS, and was very pleased when I managed to get all my reference counting working nicely. Imagine my ...
0
votes
0answers
76 views

JSON Parser using POCO C++ Leaking in XCode instruments

when I profile the following code using XCode instruments i get leaks (2.50KB) The code is written from the examples using POCO C++ found here on SO. Are the leaks real or do they get reported since ...
-3
votes
0answers
47 views

How could i correctly delete a char ** array? [closed]

My code: CTudMunka.cpp: CEloadas.cpp: main.cpp: (http)://pastebin.com/4wXRpiVX After i run, i get errors. =====Backtrace====== =====Memorymap====== Aborted(core dump) Valgrind says: 5 allocs ...
1
vote
1answer
45 views

Java GC strange behaviour or memory leak?

I am working on a Swing application and recently, I started to see the following problem: I have to display in a separate window a very large job report. I close this window, then I re-open the same ...
0
votes
0answers
15 views

memory leak while using picture.getImage, but picture.getThumbnail is ok

I am using longlistselector with 3000 pictures. Binding with valueconverter. Part of source code: stream = picture.GetImage(); image = new BitmapImage(); ...
6
votes
2answers
246 views

Valgrind shows memory leak on empty program on Mac OSX 10.8

Valgrind installed using brew. #include <stdio.h> #include <stdlib.h> int main() { return 0; } gcc -g -o hello hello.c valgrind --tool=memcheck --leak-check=yes ./hello
0
votes
0answers
34 views

Memory Leak SecItemCopyMatching with ARC

With this code block i get a Memory Leak with Instruments at the last line. NSArray *keys = [[NSArray alloc] initWithObjects:(__bridge NSString *) kSecClass, (__bridge NSString *)kSecAttrAccount, ...
-2
votes
0answers
60 views

Missing Memory Leak

Im having trouble finding the leak in my list ADT. I think it has something to do with how i malloc-ed the list but I haven't been able to figure it out. I included the whole file in case its ...
0
votes
0answers
66 views

Flex Mobile IconItemRenderer not garbage collected

I have a list with ItemRenderers extending IconItemRenderer... I dispose the list when I come to a page and remove it when I leave... In the profiler at the begining I have 1 List and 12 ...
0
votes
0answers
25 views

Is it mapkit leak is apple issue?

I'm testing my app and sometimes I got a leak when use a mapkit. But I already release all of instances of mapkit, location manager, delegates and everything related with this components. But I ...
0
votes
2answers
35 views

Windows Hook based call - Potential GDI leak

I am trying to make a call to my own function - from a program that I don't have control over - using hooks to paint on the same window of the program. It works for sometime but then crashes making me ...
0
votes
1answer
38 views

Valgrind - blocks still reachable due to?

I' trying to figure out what's causing Valgrind to warn about some 'still reachable' blocks. I've reviewed my code and can't find any free() missing. I tried running with --leak-check=yes ...
0
votes
0answers
46 views

How do Windows threads handle their parameters?

I have a class pointer, XA2SoundEngine* soundengine, that I am using to play sounds. I have created a thread system to watch and wait for the sound to finish playing so that I can delete the ...
0
votes
0answers
51 views

How can I detect memory leaks with dev c++?

I'm using windows and dev c++. How can i detect memory leaks? The only memory leak detector for window I found so far is visual memory detector.
0
votes
3answers
45 views

Pointer to object with vector memory leak

I seem to have a little memory leak problem with vectors. My code looks like this: class CPart { public: virtual void print() = 0; }; //some other classes class CDisk : ...
0
votes
0answers
63 views

Node.JS web worker memory leak?

I've got a Node.JS application that spawns a number of Web Workers. I'm seeing what looks like a slow memory leak, but I don't think it's my code. Even if I comment out the code entirely, and I just ...
0
votes
2answers
50 views

Does this code cause memory leaks [duplicate]

int main() { char* str; str = "string one"; str = "string two"; str = func(); str = "string four"; return 0; } char* func() { char* tmp; tmp = "string three"; ...
0
votes
0answers
31 views

UIImageView and UIImage leaks in device using imageWithContentsOfFile

In the following code when setting an UIImage with imageWithContentsOfFile in the device the memory increases around 2MB. There is only a small background (32kb). If I use imageNamed the memory is not ...
0
votes
0answers
24 views

What is the best way to manage AlertDialog when phone rotates?

I create my dialog with AlertDialog.Builder. When dialog is shown, if you rotate the phone dialog will be destroyed and it will leak. To prevent this, i have to set a class-wide variable which holds ...
0
votes
1answer
83 views

Memory leak - Javascript/jquery and canvas

I got one serious problem, concerning a canvas carousel. I decided, as a first html/canvas/javascript approach, to try to make myself some picture carousel. You can find it here, on everypage of my ...
0
votes
1answer
54 views

Window leak due to alert dialog

Quite new in Android development, I keep getting a window leak exception, probably due to use of an alertbox I made. In searching for what I have to change, I tried a bunch of things and I can't find ...
0
votes
1answer
65 views

do I get leaking or not

I am getting a leak warning when doing Analyze from xcode and the warning looks like the picture below However, if I am using Instrument to check, I am getting no warning at all for 'Leaks'. ...
2
votes
0answers
41 views

Vert.x how to deal with missing handler

Originally asked on the forum here - https://groups.google.com/forum/#!topic/vertx/jdNRWlE6v4Y I just read this thread discussing problems with sending out messages over the event bus where there is ...
1
vote
0answers
120 views

IIS Woker Processes (w3wp.exe) with high handle counts

Our IIS Worker Processes have high and steadly rising handle counts. The Thread Count seems to be stable but the Handle Count keep rising until the AppPool is shutdown because of inactivity. For ...
-2
votes
1answer
77 views

XCode ARC allows release

It is very strange that ARC allows release operations but doesn't allow retain operations. As far I know, all of them are forbidden. And my app crashes due to memory leaks. Why ARC is not working ...
1
vote
2answers
84 views

memory leaks with arc in init method

Why is the Leaks Instrument telling me this is a leak? I am using ARC. And how should I do this so that it doesn't leak? BTW, I tried changing 'strong' to 'weak' but then got a warning "Assigning ...
2
votes
2answers
109 views

Why am I having memory leaks? (C++)

I'm using VLD to detect memory leaks in a game I'm writing in C++. It reported no leaks at all until very recently. I have a SettingsManager class (all static methods) which loads settings and can ...
6
votes
1answer
324 views

Android — Why my app uses about 40MB Cached background process?

I'm starting a new app with minSdkVersion="14" and targetSdkVersion="17". It contains a viewpager with 6 pages. There is 3 webviews and 3 others views. When i push my app to background by clicking ...
0
votes
1answer
66 views

Leaky c++ list in xcode

Some how i mananged to create a leaking list in xcode, c++. So in my iOS project i have a list of custom objects populated like: int i=0; while (rawArr->isObject(i)) { ...
0
votes
1answer
45 views

Not able to see memory leak on console

i am using Visual studio 2010, i tried using CRT library provided by VC for memory leaks. but i am not able to see memory leaks printout on Console. codebase: #include <iostream> #include ...
1
vote
0answers
29 views

Ncurses 'new_item' function mem leak or what am i doing wrong?

I'm making a calendar in Ncurses, which means I have to dynamically allocate and free memory. The thing is that Valgrind --leak-check=full shows memory leaks in the new_item function. Here is my code. ...
0
votes
1answer
179 views

Android Handler, memory leak?

I understand that the Handler may leak memory in Android, but I am not very sure what I did is correct: public class MyActivity extends Activity { Handler handler; HashMap<String, String> ...

1 2 3 4 5 18