0
votes
3answers
46 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)
…
2
votes
1answer
51 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
74 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
393 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 …
4
votes
10answers
749 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 …
0
votes
3answers
144 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
7answers
352 views
C++: tiny memory leak with std::map
I am writing a custom textfile-data parser (JSON-like) and I have lost many hours trying to find a tiny memory leak in it.
I am using VC++2008 and the commands _CrtMemCheckpoint a …
2
votes
6answers
186 views
General strategy to resolve Java memory leak?
I have a standalone program that I run locally, it is meant to be a server type program running 24/7. Recently I found that it has a memory leak, right now our only solution is to …
2
votes
2answers
79 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 …
0
votes
1answer
59 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 …
0
votes
1answer
27 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 …
0
votes
1answer
97 views
iphone memory leak with uitableview and sqlite
Hi All,
I am having a problem with what I believe is a memory leak which after some time is causing my app to slow down. I have a sectioned uitableview that has sections of 'movi …
0
votes
1answer
56 views
Tomcat ThreadWithAttributes causing Memory Leak
I have out of memory issues with following environment:
Tomcat 5.1.23
Using XFire WebServices Framework
JDK 1.5
Used YourKit to profile it and found out multiple instances of cla …
0
votes
2answers
135 views
Another iPhone - CGBitmapContextCreateImage Leak
Like in this post:
iPhone - UIImage Leak, ObjectAlloc Building
I'm having a similar problem. The pointer from the malloc in create_bitmap_data_provider is never freed. I've ve …
0
votes
0answers
19 views
Adobe AIR - Weird Framerate / Memory Issue (Maybe startAtLogin issue? )
Hi All,
I am creating a slideshow application where it loads all the slide data from xml and external images / text files and dynamically creates the slides.
The problem that I a …
