2
votes
3answers
73 views
0x0 memory leak [iphone]
I have a leak in my app I really can't make sense of, can anyone help me with it?
Instruments Stacktrace:
0 libSystem.B.dylib calloc
1 WebCore CurrentThreadContext()
2 WebCore …
1
vote
3answers
60 views
Detect windowhandle leaks in a c# application
I ran into this exception yesterday:
Win32Exception: Fehler beim Erstellen des Fensterhandles
might translate:
Win32Exception: Error while creating the windowhandle
I know how to solve this (even …
0
votes
1answer
12 views
4.6 QWebView memory leaks?
I wrote a quick test app to use the google analytics scripts in a client app. It works fine using QWebView and
QWebFrame* pFrame = m_pWebView->page()->mainFrame();
pFrame->setContent(arrayHtml);
…
0
votes
6answers
201 views
C++ SmartPointers leak on self assign?
Hello,
i have small problem understanding why my smart pointer class is leaking on self assing.
If i do something like this
SmartPtr sp1(new CSine());//CSine is a class that implements IFunction …
0
votes
1answer
28 views
ToolStrip memory leak
Hi, I've been having trouble with memory leaks with the SWF-ToolStrip.
According to this http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=115600# is has been resolved. …
0
votes
1answer
46 views
Java Clip (Sound / Audio) Memory Leak after closing with close()
The following code creates a new audio clip, plays it, sleeps for 3 seconds and then closes it when it is finished playing. Despite the call to close(), I am watching the memory usage of the jvm go up …
0
votes
1answer
32 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 it is the code:
…
0
votes
3answers
81 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 following graph of …
1
vote
1answer
46 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[] )
{
Display* _display;
…
0
votes
2answers
71 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 to load a file via a …
1
vote
2answers
115 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?
5
votes
12answers
1k 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 this leak ???
I just …
1
vote
1answer
34 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
recycle worker …
4
votes
12answers
572 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 recommendation.
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 EnumPrinters() to get a …
