Contents: What is a Memory Profiler? Using Memory Profile to Find Memory Leaks Conclusion Memory management is a vital aspect of software engineering that most developers forget or ignore because of its high complexity. The …
Continue readingHow to fix memory leaks in C++?
Contents: How to find out if a program has leaks? Why do C++ programs have memory leaks? How to find out where leaks happen? Conclusion How to find out if a program has leaks? There …
Continue readingDeleaker is ready for Visual Studio 2022!
Since Microsoft announced the first preview of Visual Studio 2022, we have been frequently asked to support the new version of the IDE. Today we are excited to announce the availability of the Deleaker update …
Continue readingVisual Studio memory analyzer
Contents Native and managed leaks in C++ and .NET How to add a memory analyzer to Visual Studio? How do I see allocated memory in Visual Studio? Conclusion How to analyze memory usage in Visual …
Continue readingHow to fix memory leaks in C/C++ using WinDbg
Contents Introduction Examples of memory leaks The common one WinAPI’s implicit memory allocations C++ classes inheritance How to fix memory leaks in a native C/C++ application Prerequisites Preparations Debugging Sometimes it just doesn’t work. Alternative …
Continue readingUnmanaged memory leaks in .NET
Unmanaged memory leaks in C# Contents Why do unmanaged memory leaks happen in a .NET application? Symptoms of memory leaks How to fix unmanaged memory leaks in a C# application? How to find memory leaks …
Continue readingC Memory Analysis Tools
Why do you need C memory analysis tools? Developers who write in C know how important it is to manage memory properly. Unlike languages such as C++ that can free memory implicitly or .NET languages …
Continue readingDetected memory leaks! How to fix it?
How to fix detected memory leaks? It’s safe enough to say that every day hundreds of C++ developers get the message “detected memory leaks” in their Visual Studio. That is how you would view it: …
Continue readingDeleaker supports the RAD Studio 10.4 Sydney
We are excited to announce to you that now the Deleaker supports the RAD Studio 10.4 Sydney. You can get Deleaker for Delphi / C++ Builder right now at the download page. RAD Studio remains …
Continue readingMemory leaks detection in a Windows Service written in C++
Introduction This article will demonstrate how to find memory leaks in a windows service written in C++ or plain C. Windows service is a special kind of application, that runs in the background and follows …
Continue reading