Tagged Questions

1
vote
3answers
72 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 …
2
votes
4answers
94 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 …
2
votes
0answers
53 views

.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 …
0
votes
6answers
188 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 …
1
vote
4answers
73 views

Events and Memory Leaks in .NET

I'm using C# .NET 3.5 ... and I've been working to decouple a BLL object by moving database related activity into a seperate worker object. The worker object adds entities to the database and events a …
0
votes
4answers
36 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 …
0
votes
2answers
47 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
3answers
181 views

Worst memory leak in C++ you have encountered? [closed]

What is the worst memory leak (effectwise) in C++ you have encountered? Providing code too would be a bonus.. :-)
1
vote
2answers
28 views

Loading a large hprof into jhat.

I have a 6.5GB Hprof file that was dumped by a 64-bit JVM using the -XX:-HeapDumpOnOutOfMemoryError option. I have it sitting on a 16GB 64-bit machine, and am trying to get it into jhat, but it keeps …
2
votes
1answer
133 views

How to avoid memory leak with boost::shared_ptr?

Consider the following code. using boost::shared_ptr; struct B; struct A{ ~A() { std::cout << "~A" << std::endl; } shared_ptr<B> b; }; struct B { ~B() { std::cout …
1
vote
1answer
48 views

Memory leaks with UIWebView and NSURL: already spent several days trying to solve them

I have already found a lot of information about how to solve memory leaks for iPhone Obj C code. The last two leaks keep me puzzled, I'm probably overlooking something. Maybe you can spot it. …
1
vote
2answers
55 views

c# picturebox memory releasing problem

Hi everybody. I'm a newby in C#. I have to repeatedly refresh a GUI picture box in a worker thread. The image is acquired from a camera polling a driver with a GetImage method that retrives the image …
1
vote
4answers
177 views

How can I prevent CompileAssemblyFromSource from leaking memory?

I have some C# code which is using CSharpCodeProvider.CompileAssemblyFromSource to create an assembly in memory. After the assembly has been garbage collected, my application uses more memory than it …
1
vote
1answer
20 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 …
1
vote
7answers
177 views

Memory leak/Memory allocation in C++

I have the following function in C++ void func1() { char *p = "Test for memory leak"; } When func1() is called where is the memory for the variable allocated? Whether in the stack or the heap? …

1 2 3 4 5 38 next
15 30 50 per page