0
votes
1answer
14 views
strange iphone sdk sqlite memory leak
Hi guys, I have a very strange memory leak problem, it seems that sqlite3_step is doing some nasty stuff :|
I spent almost 4 hours trying to fix this but no luck till now :(
Here …
4
votes
11answers
869 views
Iphone SDK Utility Application template has leak
Hi, 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 th …
2
votes
3answers
87 views
How Can I Prevent Memory Leaks in IE Mobile?
Hi All,
I've written an application for use offline (with Google Gears) on devices using IE Mobile. The devices are experiencing memory leaks at such a rate that the device become …
1
vote
1answer
17 views
app pool settings kill threads but keep settings
.net 2.0 aspx app / IIS6 creating a silly number of threads in w3wp.exe process app pool.
The app has been isolated to its own app pool with the following settings:
RECYCLING
r …
0
votes
2answers
29 views
Can’t free memory of NSData object
Hi,
i'm new to xcode / cocoa and even objective-c thus my question might be stupid. Im trying to write a program that will hash files in a folder. I looked around and found a way …
1
vote
1answer
40 views
Why does my simple GLX app leak memory?
The code below shows a small 48 byte leak in valgrind.
#include <X11/Xlib.h>
#include <GL/glx.h>
#include <unistd.h>
int main( int argc, char* argv[] )
{
Di …
0
votes
1answer
37 views
How to ensure no memory leak for Objective-C class that is called by many other class.
I have the following controller class which will do different tasks based on combination of the flag and param property. The value of these two properties will be set by many other …
1
vote
2answers
112 views
Is there a freeware utility out there to monitor a c++ application for memory leaks?
I am verifying an application coded in c++ with memory leak and need a utility (freeware) I can easily run to detect where it is ocurring. any ideas?
0
votes
3answers
67 views
Memory Leak / Form not being garbage collected.
I'm tracking down a Memory leak within an MDI application. Opening, and then closing the form results in the form staying in memory. Using Ant's memory profiler, I can get the foll …
0
votes
3answers
173 views
WPF WriteableBitmap Memory Leak?
Hello, everyone!
I'm trying to figure out how to release a WriteableBitmap memory.
In the next section of code I fill the backbuffer of a WriteableBitmap with a really large amou …
0
votes
3answers
55 views
sizeWithFont memory leak in iphone
I have this code:
[[data objectForKey:[keys objectAtIndex:0]]
sizeWithFont:[UIFont systemFontOfSize:12]
constrainedToSize:CGSizeMake(276.0, 1000.0)
…
0
votes
1answer
63 views
Media Player MPMediaItemArtwork Memory Leak
Hello,
I seem to be getting a memory leak when getting the album artwork for the currently playing item with this code:
MPMediaItem *playingItem = self.musicPlayer.nowPlayingItem …
2
votes
1answer
53 views
OS API allocates members in struct. Free just the struct or every member first?
Let's say we have an array of PRINTER_INFO_2 like this:
PRINTER_INFO_2* printers = (PRINTER_INFO_2*)malloc(sizeof(PRINTER_INFO_2) * 64); // room for 64 items
Then we call EnumPr …
0
votes
2answers
94 views
Java deque / prepared statement memory leak.
One of the following pieces of code generates a memory leak, any idea which part?
1)
private Deque<Snapshot> snapshots = new LinkedList<Snapshot>();
Iterator<Snap …
4
votes
12answers
460 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 recomm …
