Click here to Skip to main content
15,891,253 members
Articles / Programming Languages / C++

Memory Leak Finder

Rate me:
Please Sign up or sign in to vote.
3.68/5 (39 votes)
22 Feb 2012MIT2 min read 345.8K   4.5K   126  
Custom memory handler with memory leak reporting and no-mans-land checking. Leaks are reported with call stack of allocation.
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MemLeakFinder", "MemLeakFinder.vcxproj", "{C49B41A5-1A99-43BC-B1EA-CE06ABF05862}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MemLeakFindDll", "MemLeakFindDll.vcxproj", "{1ACEBB61-28A9-4FE0-94DC-85334BBF49E1}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Win32 = Debug|Win32
		Release|Win32 = Release|Win32
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{C49B41A5-1A99-43BC-B1EA-CE06ABF05862}.Debug|Win32.ActiveCfg = Debug|Win32
		{C49B41A5-1A99-43BC-B1EA-CE06ABF05862}.Debug|Win32.Build.0 = Debug|Win32
		{C49B41A5-1A99-43BC-B1EA-CE06ABF05862}.Release|Win32.ActiveCfg = Release|Win32
		{C49B41A5-1A99-43BC-B1EA-CE06ABF05862}.Release|Win32.Build.0 = Release|Win32
		{1ACEBB61-28A9-4FE0-94DC-85334BBF49E1}.Debug|Win32.ActiveCfg = Debug|Win32
		{1ACEBB61-28A9-4FE0-94DC-85334BBF49E1}.Debug|Win32.Build.0 = Debug|Win32
		{1ACEBB61-28A9-4FE0-94DC-85334BBF49E1}.Release|Win32.ActiveCfg = Release|Win32
		{1ACEBB61-28A9-4FE0-94DC-85334BBF49E1}.Release|Win32.Build.0 = Release|Win32
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer (Senior)
Sweden Sweden
B.Sc in Software engineering

Writing software for the finance market.
Languages known: C/C++, SQL, Java, Perl, M68000 assembly and more. Give me the syntax and I'll program in it.

In my spare time i like to watch movies, read books and play computergames.

Comments and Discussions