1
vote
2answers
287 views
NSURLConnection leak?
i have set up a nsurl which grabs the data from http.
when i run instrument, it says i have a leak NSFNetwork object.
and how do i release theConnection in (void)ButtonClicked? or it will be release …
0
votes
2answers
103 views
Memory leak reported by valgrind in dlopen?
I've been debugging some app lately with valgrind, and I'm getting very weird reports from dlopen.
==1987== 32 bytes in 1 blocks are still reachable in loss record 1 of 2
==1987== at 0x4C24477: …
2
votes
1answer
120 views
Weak event handler model for use with lambdas
OK, so this is more of an answer than a question, but after asking this question, and pulling together the various bits from Dustin Campbell, Egor, and also one last tip from the …
2
votes
4answers
128 views
WPF RichTextBox memory leak
In my application, I have a lot of RichTextBoxes that are created dynamically in run time. I realized that the application has a memory leak, which is caused by the RichTextBox controls. To prove that …
0
votes
1answer
25 views
iframe based IE6 javascript memory leak?
Hi,
I'm loading in content using an iframe via a menu with jquery which is updating
the 'src' attribute of the iframe to then load in the desired page. Each of the
pages have their own javascript …
2
votes
3answers
134 views
+100
.NET Remoting Singleton memory leak, TCP, Marshal by Reference
I am using the simplest example of remoting that I could find, sharing an object between a windows service and a windows forms program (client), running on the same machine.
The service instantiates …
4
votes
2answers
418 views
Are there any tools for finding memory leaks in my Perl program?
I am using ActiveState Perl 5.6 on a Windows 2003 Server, and am having some memory leak issues. Are there any good tools (or even bad tools which would give a clue) which I would be able to use to …
1
vote
1answer
28 views
problem with MFC Diagnostics
So I gave up implementing my own memoryleak tracking (in this question http://stackoverflow.com/questions/1855406/overloading-new-and-delete-problem ) and try to use the MFC functions to identify my …
1
vote
3answers
83 views
how to garbage collect a direct buffer java
I have a memory leak that I have isolated to incorrectly disposed direct byte buffers.
ByteBuffer buff = ByteBuffer.allocateDirect(7777777)
The GC collects the objects that harbor these buffers but …
7
votes
6answers
960 views
Best way to track down a memory leak (C#) only visible on one customer’s box
What is the best way to track down a memory leak that is only found on one customer's test/release box, and no where else?
12
votes
6answers
786 views
Trying to track down a memory leak / garbage-collection problem in Java.
This is a problem I have been trying to track down for a couple months now. I have a java app running in that processes xml feeds and stores the result in a database. This has been giving intermittent …
1
vote
1answer
23 views
Process memory increases much faster with gflags +ust
Hello all! I've got stuck in a problem with gflags when trying to find some memory leaks in a windows app.
When I turn on the ust flag (in order to collect memory allocations stack traces) the memory …
2
votes
4answers
97 views
Can I cause memory leaks during debug of my program ?
I'm developing on Ubuntu 9.10
I'm writing a C program, during my tests & debugs I'm calling malloc and always remember to call free() - This is obviously just during debug.
I'm curious: Am I …
0
votes
2answers
55 views
How do I find a .NET remoting memory leak on select machines?
The memory leak is not happening on every machine, but reliably on a couple at my work, and it's looking like close to 10% in the field.
I have a product that uses a Windows service to monitor user …
0
votes
4answers
42 views
Java Outputstream behavior when multiple outputstream objects are wrapped
Hi,
I have a code that does compression, encryption and checksum on a File Outputstream. Following is the code-
private void start() {
OutputStream os = null;
try {
os = new …
