Top "Memory-leaks" questions

A memory leak occurs when a program fails to release memory that it has allocated but is no longer using and is not recoverable.

CString to char*

We are using the CString class throughout most of our code. However sometimes we need to convert to a char *. …

c++ mfc memory-leaks cstring
Large Object Heap Fragmentation

The C#/.NET application I am working on is suffering from a slow memory leak. I have used CDB with …

c# .net memory-management memory-leaks windbg
Is leaked memory freed up when the program exits?

If I programmed — without knowing it — a memory leak, and the application terminates, is the leaked memory freed?

c++ memory-leaks
How to add a breakpoint to objc_exception_throw?

this was the answer from the brad larson on this SO question If you add two breakpoints, you should be …

objective-c iphone xcode debugging memory-leaks
Causing OutOfMemoryError in Frame by Frame Animation in Android

I am having lots of images as frames in my resources/drawable folder (let say approx 200). And using this images …

android animation memory-leaks out-of-memory
Android: out of memory exception in Gallery

My app shows a list of 9 categories and each category displays a Gallery-based coverflow (graciously offered by Neil Davies here) …

android memory-leaks gallery
SQLite connection object leaked - Android

I am making my first android app, and I took some sqlite tutorials first, that taught me to use a …

android sqlite memory-leaks sqliteopenhelper
How can I release memory after creating matplotlib figures

I have several matlpotlib functions rolled into some django-celery tasks. Every time the tasks are called more RAM is dedicated …

python memory-leaks numpy matplotlib
How to Force Thread Dump in Eclipse?

I'm launching a Weblogic application inside Eclipse via the BEA Weblogic Server v9.2 runtime environment. If this were running straight …

java eclipse memory-leaks weblogic
How can I find memory leaks in my Python program?

Possible Duplicate: Python memory profiler I've got a fairly complex (about 20,000) line Python program which after some development has started …

python debugging memory-leaks twisted