1
I Use This!
Very Low Activity

Commits : Listings

Analyzed 22 days ago. based on code collected 22 days ago.
Jan 28, 2024 — Jan 28, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Added the BinPath registry value so that VLD can find the location of the binaries directory where dbghelp.dll is installed. More... over 18 years ago
Initial revision of the test suite. Only tests a couple types of allocations. (many) More allocation types need to be added. More... over 18 years ago
Added the test stuite subproject, for more easily running VLD though its paces. However, the test suite at this point only excercises a couple of types of memory allocation (malloc and new). More types need to be added. More... over 18 years ago
Reverted back to using explicit dynamic linkage against the Debug Help Library. This time, it is so that we can guarantee that we link with the version of the library that was installed by VLD. More... over 18 years ago
Reverted back to using explicit dynamic linkage against the Debug Help Library. This time, it is so that we can guarantee that we link with the version of the library that was installed by VLD. More... over 18 years ago
Initial revision of the path environment variable manipulation header. Made some minor customizations to the original which was obtained from the NSIS website (prevent the path addition from being added more than once, e.g. if the installer is re-run to repair an installation, or if a newer version is installed on top of an older version).
db
More... over 18 years ago
Changed installation of DLLs to the "bin" directory under the VLD installation folder and also included dbghelp.dll. Added support for having the installer add the "bin" directory to the path environment variable, so that the debugged application can find vld.dll.
db
More... over 18 years ago
Initial revision of the installer script. More... over 18 years ago
Initial revision of the license file (regular GPL) for the installer. More... over 18 years ago
Changed to static runtime library linkage. More... over 18 years ago
Added support for reading the ini file location from the registry. More... over 18 years ago
Removed vector new handlers for VC 6.0 libraries. None of the VC 6.0 libraries export vector new operators.
db
More... over 18 years ago
Removed some deprecated code to eliminate a compiler warning. More... over 18 years ago
Fixed the bug in my previous attempt to fix the re-loaded module bug. The moduleinfo entry can only be safely erased from the moduleset on a module that may still be patched if we can guarantee no memory allocations will occur until after the module's new moduleinfo is re-inserted into the moduleset. More... over 18 years ago
Initial revision of the solution file for Visual Studio 2005. More... over 18 years ago
Added new handlers to properly support all versions of the CRT, MFC 8.0, and added missing handlers for calloc. More... over 18 years ago
VLD no longer depends on the debug CRT, so the debug CRT block header structure had to be copied to VLD so that we can still parse CRT debug block headers without #including the debug CRT header files. More... over 18 years ago
No longer maintaining support for buildling VLD from source under VC 6.0. More... over 18 years ago
Removed dependencies on the debug CRT. The release version of VLD will now be linked with the release CRT, so that the CRT DLL can be distributed with VLD, so that the same binary can be used with both Visual Studio 2005 and earlier versions. More... over 18 years ago
Removed dependencies on the debug CRT. Added calloc handlers. Added vector new handlers. Finished MFC 8.0 support. Added proper handling of attaching to modules that have previously been attached. Fixed these bugs: - Leaks from calloc may go undetected. - Leaks from vector new operator may go undetected. - No support for MFC 8.0 - Unloading and reloading a previously loaded module might cause leaks that occur after the module is reloaded to go undetected. More... over 18 years ago
Added newaop.cpp to the list of source files internal to the heap. More... over 18 years ago
Bumped the version number to 1.9b. This is an unofficial release, intended only for very limited testing from people who specifically request it. The official release (hopefully 1.9c) will be done when the problems with the MFC 8.0 libraries are solved. More... over 18 years ago
Bumped the version number to 1.9b. This is an unofficial release, intended only for very limited testing from people who specifically request it. The official release (hopefully 1.9c) will be done when the problems with the MFC 8.0 libraries are solved. More... over 18 years ago
Initial version of the Visual Studio 2005 project file. More... over 18 years ago
Fixed a typo in the comments. More... over 18 years ago
Changed VOID to void so that vld.h is not dependent on the Windows headers. More... over 18 years ago
Added handlers for the Visual Studio 2005 (8.0) CRT library exports, and for the MFC 8.0 exports. The new MFC handlers compile clean, but there are runtime errors associated with them because GetModuleHandle unexpectedly returns NULL for "mfc80d.dll". So, the MFC 8.0 exports have been commented out of the patch table. Leak checking in MFC 8.0 will not work. Also fixedcompiler warnings in Visual Studio 2005. More... over 18 years ago
Added handlers for the Visual Studio 2005 (8.0) CRT library exports, and for the MFC 8.0 exports. The new MFC handler compile clean, but there are runtime errors associated with them because GetModuleHandle unexpectedly returns NULL for "mfc80d.dll". So, the MFC 8.0 exports have been commented out of the patch table. Leak checking in MFC 8.0 will not work. Also fixedcompiler warnings in Visual Studio 2005. More... over 18 years ago
Added a couple of miscellaneous definitions as part of fixing compiler warnings in Visual Studio 2005. More... over 18 years ago
Fixed compiler warnings in Visual Studio 2005. More... over 18 years ago