Select the product you need help with
How to identify memory leaks in the common language runtimeArticle ID: 318263 - View products that this article applies to. This article was previously published under Q318263 On This PageSUMMARY This article discusses what memory leaks are and lists some
possible causes of memory leaks. Additionally, this article discusses the
perceived memory leak and how it can be misinterpreted as a true memory leak.
MORE INFORMATION Memory leaks can cause an application to run out of
resources and can cause an application to crash. It is important to identify
memory leaks. The problem of memory leaks has plagued developers in C and C++
for years. In Microsoft Visual Studio 2005 or in Microsoft Visual Studio .NET, a comprehensive garbage collection
package and managed memory can stop memory leaks, but, under some
circumstances, a program may appear to be leaking memory. Definition of memory leakA memory leak occurs when memory is allocated in a program and is never returned to the operating system, even though the program does not use the memory any longer. The following are the four basic types of memory leaks:
DiscussionBecause of the garbage collection package that is implemented in the Microsoft .NET Framework, it is not possible to have a memory leak in managed code. This suggests two questions: How then can a memory leak occur? Why does it appear that you have a memory leak?A memory leak can occur in a .NET Framework application when you use unmanaged code as part of the application. This unmanaged code can leak memory, and the .NET Framework runtime cannot address that problem. Additionally, a project may only appear to have a memory leak. This condition can occur if many large objects (such as DataTable objects) are declared and then added to a collection (such as a DataSet). The resources that these objects own may never be released, and the resources are left alive for the whole run of the program. This appears to be a leak, but actually it is just a symptom of the way that memory is being allocated in the program. For example, you have a DataSet. Every time that a new query is run, you add a new DataTable element to that DataSet to hold the data that is returned. If there are large amounts of data that you never dispose of, the data stays alive as long as the DataSet is still in use. If this occurs enough times, it is possible to run out of memory. This is not a memory leak, but instead it is a problem in managing the memory. See the following code example: Although this code is obviously inefficient and not practical, it is meant to demonstrate that if objects are added to a collection (such as adding the tables to the DataSet collection), the objects are kept active as long as the collection remains alive. If a collection is declared at the global level of the program, and objects are declared throughout the program and added to that collection, this means that even though the objects are no longer in scope, the objects remain alive because they are still being referenced. Each time that this occurs, the amount of memory that the program is using increases. The memory does not decrease until the end of the program or the release of the objects from the collection. When you watch the program on a performance monitor, this appears to be a memory leak, but it is not. The program still has control over the memory but has chosen not to release it. The fact that the program still has control prevents this from being a memory leak, but the fact that the program keeps increasing the amount of memory used can make it appear to be a memory leak. Symptoms of memory leakWhen the amount of memory that a program is using continues to increase during the execution, this is a symptom of a memory leak. (You can watch this count of memory through a performance monitor.) The amount of memory that the program uses can eventually cause the program to run out of resources and to crash.REFERENCES The following is a list of Help topics for more information
about memory and its management:
317297 For more information, visit the following Microsoft
Developer Network (MSDN) Web sites:
(http://support.microsoft.com/kb/317297/
)
Roadmap for debugging hangs, memory leaks, deadlocks, and race conditions in Visual Basic .NET
http://msdn.microsoft.com/en-us/library/x98tx3cf.aspx
(http://msdn.microsoft.com/en-us/library/x98tx3cf.aspx)
http://msdn.microsoft.com/en-us/library/fz5w87ad.aspx
(http://msdn.microsoft.com/en-us/library/fz5w87ad.aspx)
http://msdn.microsoft.com/en-us/library/kxx6e7z6.aspx
(http://msdn.microsoft.com/en-us/library/kxx6e7z6.aspx)
http://msdn.microsoft.com/en-us/library/s3aw423e.aspx
(http://msdn.microsoft.com/en-us/library/s3aw423e.aspx)
PropertiesArticle ID: 318263 - Last Review: December 6, 2006 - Revision: 4.7 APPLIES TO
| Article Translations |


Back to the top








