Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
2answers
6k 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 ...
6
votes
1answer
421 views

Having difficulty using IE Javascript leak detectors

Microsoft's IE6 and IE7 browsers suffer from memory leaks when certain Javascript code patterns are used. I've found lots of information on what the leak patterns were, back in early IE6 days. ...
4
votes
8answers
2k views

Visual C++ - Memory Leak Detection

Any suggestions? This SO post talks about Visual Leak Detector, but I'm looking for other tools. Also, please don't recommend this.
3
votes
3answers
56 views

How to do memory check on a daemon program?

I have written a C++ application, that runs forever until terminated manually. It monitors other important applications. As a result my Daemon application should not go down. Keeping that in mind, I ...
3
votes
1answer
79 views

SDL memory leaks and Visual Leak Detector

Alright, so I think my program might have a memory leak. It's an SDL application, and it seems to have grown too large for me to manually pinpoint the leak. I searched around for a windows equivalent ...
2
votes
1answer
613 views

Including a dependency in VS2010 - Visual Leak Detector

I'm trying to use Visual Leak Detector 1.9h beta in a Visual C++ project on Visual Studio 2010. When I build and run my project I get the following error: The program can't start because vld.dll ...
1
vote
1answer
92 views

How do you trace application memory leaks?

I have a large application which I run on a mobile device, written in C++ where it's UI is built using QT. Do you know any utility that I can run to check for memory leaks while running the QT ...
1
vote
2answers
50 views

Design pattern for catching memory leaks in objective-c?

I have read Apple's memory management guide, and think I understand the practices that should be followed to ensure proper memory management in my application. At present it looks like there are no ...
1
vote
1answer
47 views

valgrind, on AMD x64, no useful stack info available

when use valgrind to check memory leaks, I encouter a very strange problem. On 32bit linux, the leak stack infos are very clear like: ==10650== by 0x8130FD3: SFNTSetContactServer ...
1
vote
1answer
192 views

iOS NSZombiesEnabled = YES

I found this bit of code online to check if my NSZombiesEnabled is on or off if( getenv("NSZombieEnabled") || getenv("NSAutoreleaseFreedObjectCheckEnabled") ) { ...
1
vote
1answer
311 views

Memory Leaks tutorial in iphone

is there is any good tutorial link that can help me in the memory leaks of iphone,, b/c I am facing some problem whenever I allocate a memeory , in the dealloc I am releasing that memeory, but the ...
1
vote
1answer
162 views

Does anyone know why the SimpleFTPSample that apple provides leaks memory?

I noticed that the SimpleFTPSample that apple provides leaks memory. The Leaks Performance tool detects a leak when using the "List" sample. A leak is detected after you press the "List" button the ...
1
vote
3answers
2k views

Any free memory leak detector for Qt?

I'm looking for free memory leak detector for Qt. I use Qt Creator 1.3 with Qt version 4.6 (32 bit). The platform is Windows 7 Ultimate. Thanks.
0
votes
3answers
75 views

Detecting memory leaks in C programs?

If we would like to check for memory leaks in a C++ program, we can overload the new and delete operators to keep track of the memory that was allocated. What if we would like to check for leaks in a ...
0
votes
1answer
10 views

Server - Knowing which scripts are running, and their memory usage

I have quite large application, and now I'm seeing there's a bad memory leak, is there some sort of software, or something which allows me to see the current executed scripts and their size? I'm using ...
0
votes
2answers
146 views

Problem troubleshooting a “OutOfMemory” Exception

I am working with a server side application on Java 5 update 09. I am using basically XSL transformation to show some reports in pdf format. My problem is the performance of my system is worse and ...
0
votes
0answers
43 views

Android: How should I read memory allocations?

how should I read memory allocations? What is high what is low, what is normal? By testing my app on a physical device I just discovered that xml UI was causing memory leaks. Here is my app's memory ...
0
votes
1answer
730 views

Visual Leak Detector does not work

I have just started using Visual Leak Detector for Visual C++ 2008/2010 When i run it on small app (just few line with undeleted allocations) it works just fine. Now I want to run it into my bigger ...
0
votes
2answers
453 views

How does std::map operator[] cause memory leak with fundamental data types?

I'm using Visual Leak Detector to detect memory leaks, and have encountered many instances of memory leaks in lines such as: class SomeClass { // ... std::map<long,long> some_map; ...
-1
votes
1answer
182 views

Problem with memory leak check tools in Linux [closed]

1) Is there also any memory leak tool called Boehmgc? How is that tool compared to others? 2) I have used LeakTracer, mudflap and Valgrind. But unfortunately LeakTracer has the disadvantage of memory ...