2
votes
0answers
38 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 …
2
votes
4answers
93 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
4answers
35 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 …
1
vote
4answers
72 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
6answers
186 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
2answers
46 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 …
1
vote
2answers
26 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 …
0
votes
3answers
180 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
48 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
1answer
18 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
1answer
129 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
47 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
7answers
176 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? …
0
votes
0answers
34 views
Leaking memory in Iphone app
Hi.
I have app that uses a SQlite class to populate a UITableView. When a user selects a row in the table view, the view controller pushes another view controller with a new table view. That gets …
0
votes
1answer
42 views
COCOA Objects Allocation/Deallocation + Memory Optimization
Hello friends,
Ah.. We've developed a good iPhone application. Now, 'm passing through last phases of it, i.e. profiling it and I've encountered few problems. Application has few leaks and objects …
