New Post: v2.4 final?
It's been like 8+ months since RC-2, but no "final" release has ever been made available, as far as I can tell. So any chances for a "final" release anytime soon? Thanks!
View ArticleNew Post: undetected array leak
hello I just downloaded the vld lib and test it with the following code:class Leak { public: Leak(const std::string& str) { c = new char[str.length()](); memcpy(c, str.c_str(), str.length()); }...
View ArticleNew Post: undetected array leak
You're right, I've looked at the source, and VLD does not seem to differentiate between delete and delete[], or for that matter new and new[]. It's also possible to mix new[] and free, without any...
View ArticleNew Post: undetected array leak
I also found that if you have a base class and some other class is inherited from it and the base class does not have a virtual destructor , then VLD does not detect the leak. --
View ArticleNew Post: Some fixes checked in into the master branch by mistake...
Thanks Arkadiy! I indeed did not test it on x64, my fault :-)
View ArticleNew Comment on "Using Visual Leak Detector"
Debugging my DLL running under Excel 2010 under VS2008 Express. After installing VLD on VS2008 Expresss, when I debug by opening the Excel sheet and loading my DLL, I now get endless Unhandled...
View ArticleCommented Unassigned: Stack overflow exception : _HeapAlloc [10576]
This is reproducible exception.It looks like an infinite recursive call to _HeapAlloc.> vld_x64.dll!VisualLeakDetector::_HeapAlloc(void * heap=0x0000000000310000, unsigned long flags=8, unsigned...
View ArticleCreated Unassigned: MSVC2013 type_info::name false positives [10581]
We migrated to the MSVC2013 from MSVC2010 and updated VLD to the latest version from the source tree (tested with latest release 2.4.rc2 as well).Our project uses MFC with static linkage. A couple of...
View ArticleCommented Unassigned: VisualLeakDetector crashes while shutdown, process is...
The problem is that the functions which are hooked by VLD are not properly unhooked at VLD shutdown.That means the hooked functions are called even though VLD is destroyed already and this leads to the...
View ArticleCreated Unassigned: VLD does not differentiate between new, new[] and malloc...
I've looked at the source, and VLD does not differentiate between new, new[] or mallloc, or for that matter, when an incorrect de-allocation occurs, such as memory being allocated with new but deleted...
View ArticleNew Post: Can a program show VLD output when run from the command line?
Windows 7 SP1 64bit Visual Studio 2008 Visual Leak Detector vld-2.4rc2 I have instrumented a small test program that successfully displays VLD leak results to the Output Window of Visual Studio 2008...
View ArticleNew Post: Using VLD for detecting leaks in DLL
Hi, I have a project that generates quite a few DLL. I understand that I must add #include <vld.h> to each subproject. and so I did. However I fail to complete link of these subprojects because...
View ArticleNew Post: Using VLD for detecting leaks in DLL
I don't know what can cause it, vld use only vld.lib libraryВт, 17 февр. 2015 г. в 15:03, TP <[email removed]>:From: TPRead the full discussion online.To add a post to this discussion, reply to...
View ArticleCreated Unassigned: Wrong detection with /MT compiler switch [10583]
```#define VLD_FORCE_ENABLE#include <vld.h>int main(){ return 0;}```build the above code with __/MT__ option(__static release CRT__). press F5 and get a lot of leaks
View ArticleNew Post: undetected array leak
Allocation mismatches were never tested in VLD in the past. Though it would and should be an important feature. Therefore I would consider that unsupported at present. Though if anyone of you wants to...
View ArticleNew Post: undetected array leak
I've already downloaded the latest source and am familiarizing myself with the code. I'm looking at the best way to implement this feature, so hopefully if I have a bit of spare time I'll get it done.
View ArticleCommented Unassigned: Wrong detection with /MT compiler switch [10583]
```#define VLD_FORCE_ENABLE#include <vld.h>int main(){ return 0;}```build the above code with __/MT__ option(__static release CRT__). press F5 and get a lot of leaksComments: If you are building...
View ArticleNew Comment on "Using Visual Leak Detector"
Would be nice to have the VLD version accessible at program compiletime. I'm currently using VLD 2.4rc2 with VC++ 2013. Any means available?
View ArticleNew Post: Visual Leak Detector: Failed to unload the symbols
I am getting this warning while using VLD. WARNING: Visual Leak Detector: Failed to unload the symbols for mciwave.dll. Function names and line numbers shown in the memory leak report for mciwave.dll...
View Article