1
vote
2answers
56 views
What should be the reason behind this leaky line ?
I have follwowing peace of code in which I have specified the leaky line . As I am new to iPhone developement I can't understand what actually is wrong with that line . please have …
0
votes
2answers
29 views
UITextField Memory Leak
Hi, In my code, there is an memory leak, when the Keyboard appears for the first time when I am about to enter values in the UITextField. Can someone please give me some idea about …
6
votes
7answers
265 views
Who deletes the memory allocated during a “new” operation which has exception in constructor
I really can't believe I couldn't find a clear answer to this...
How do you free the memory allocated after a C++ class constructor throws an exception, in the case where it's ini …
1
vote
3answers
41 views
Memory leak log message while *compiling* with Xcode for the iPhone
When I compile my iPhone project (in the command line), the log output looks like:
2009-11-05 22:19:57.494 xcodebuild[51128:613] warning: compiler 'com.apple.compilers.llvm.clang. …
0
votes
3answers
44 views
Should I rely on Clang Static Analyser or Instruments ?
Hello all ,
I am working on iPhone application..
For the purpose of finding memory leaks I have started the application with the instruments which gave me lots of leaks . which i …
0
votes
1answer
23 views
How do you make sure WPF releases large BitmapSource from Memory?
System: Windows XP SP3, .NET 3.5, 4GB RAM, Dual 1.6gHz
I have a WPF application that loads and transitions (using Storyboard animations) extremely large PNGs. These PNGs are 8190 …
2
votes
2answers
44 views
Problem with memory leak on iPhone…
I have a strange problem with a memory leak (the only one ;-) ) in my iPhone app:
I don't know where I have to look for the cause of this leak... the strange thing is that this, …
0
votes
7answers
131 views
memory leaks during development
So, I've recently noticed that our development server has a steady ~300MB out of 4GB ram left after the finished development of a certain project. Assuming this was due to memory l …
0
votes
2answers
57 views
Can anyone identify the leakage , help ?
Hello all ,
I have developed my iPhone application and now I am testing it with instruments to find memory leakages .
I have my appDelegate class in which I am fetching data from …
6
votes
3answers
115 views
Finding a Perl memory leak
SOLVED see Edit 2
Hello,
I've been writing a Perl program to handle automatic upgrading of local (proprietary) programs (for the company I work for).
Basically, it runs via cron …
0
votes
3answers
36 views
NSXMLParser iPhone memory strategy for large xml
Hi
I build a parsing algorithm using NSXMLParser.
Im having doubt as to what is the best strategy for keeping my memory usage on a minimum.
I have a valueObject (e.g. "Person") t …
1
vote
2answers
57 views
How to work around memory-leaking 3rd party DLL (no source code) accessed by Tomcat application?
We have a project where a 3rd party DLL is accessed through JacoZoom in a Tomcat application. Apparently the DLL leaks memory (confirmed by the vendor), but the vendor has no inten …
3
votes
2answers
53 views
Embedded IronPython Memory Leak
I need some help finding a solution to a memory leak I'm having. I have a C# application (.NET v3.5) that allows a user to run IronPython scripts for testing purposes. The scripts …
0
votes
0answers
22 views
Boundschecker does not terminate execution
I'm trying to generate a memory leak report using BoundsChecker 9.0.931.1 (BC.exe) through command line. The command I use is:
BC.exe /B sessionlog.dbpcl /XD xmlout.xml /OUT error …
0
votes
8answers
159 views
How to check if memory has aready been released in Destructor?
I have a simple tank wars style game using the allegro open source library. In my tank class, I initialize arrays of pointers to bitmap objects to 0. Then I create new objects wi …
