Skip to content

Commit

Permalink
Change list updated
Browse files Browse the repository at this point in the history
  • Loading branch information
KindDragon committed Apr 29, 2013
1 parent b3c8276 commit 84d8146
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ x64/
*.*sdf
*.suo
ipch/
setup/vld-*-setup.exe
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Visual Leak Detector (VLD) Version 2.3.0
Enhancements:
+ Windows 8 support added.

Bugs Fixed:
+ Memory leaks with duplicate thread id fixed (thanks to jlddodger).

2.2.3 (15 Febrary 2012)
----------------------------
Enhancements:
Expand Down
6 changes: 3 additions & 3 deletions vldint.h
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,9 @@ class VisualLeakDetector : public IMalloc
VOID ResolveCallstacks();

static NTSTATUS __stdcall _LdrLoadDll (LPWSTR searchpath, ULONG flags, unicodestring_t *modulename,
PHANDLE modulehandle);
static NTSTATUS __stdcall _LdrLoadDllWin8 (DWORD_PTR reserved, PULONG flags, unicodestring_t *modulename,
PHANDLE modulehandle);
PHANDLE modulehandle);
static NTSTATUS __stdcall _LdrLoadDllWin8 (DWORD_PTR reserved, PULONG flags, unicodestring_t *modulename,
PHANDLE modulehandle);
static FARPROC __stdcall _RGetProcAddress (HMODULE module, LPCSTR procname);
private:
////////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 84d8146

Please sign in to comment.