0
votes
0answers
2 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);
…
1
vote
3answers
51 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
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
6answers
199 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
38 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
28 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:
…
1
vote
1answer
29 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 …
1
vote
1answer
45 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
65 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?
0
votes
3answers
79 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 …
0
votes
3answers
62 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
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 …
0
votes
2answers
115 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<Snapshot> i = …
0
votes
1answer
41 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 classes having a …
